ack/lang/cem/libcc.ansi/stdio/fileno.c

13 lines
144 B
C
Raw Normal View History

1989-12-18 15:04:14 +00:00
/*
* fileno .c - map a stream to a file descriptor
*/
/* $Header$ */
#include <stdio.h>
int
(fileno)(FILE *stream)
{
return stream->_fd;
}