ack/lang/cem/libcc.ansi/sys/stdio/fileno.c
2018-06-23 18:54:40 +02:00

16 lines
171 B
C

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