ack/lang/cem/libcc.ansi/stdio/fileno.c
2018-06-21 22:33:47 +02:00

12 lines
139 B
C

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