ack/lang/cem/libcc.ansi/stdio/fileno.c
1994-06-24 14:02:31 +00:00

13 lines
140 B
C

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