ack/lang/cem/libcc.ansi/sys/stdio/fileno.c
David Given 9109d7af7f First stage in modularising FILE*. Refactor so that printf/scanf don't rely on
FILE* innards; allow plats to replace the entire emulated FILE* system.
2019-06-15 13:07:10 +02:00

16 lines
201 B
C

/*
* fileno .c - map a stream to a file descriptor
*/
/* $Id$ */
#include <stdio.h>
#if ACKCONF_WANT_STDIO && ACKCONF_WANT_EMULATED_FILE
int(fileno)(FILE* stream)
{
return stream->_fd;
}
#endif