Fixes for /usr/xbin binaries bootstrap dir.
[minix3.git] / lib / stdio / fileno.c
blob1619a30954272dbe7fd43cdababf72f1dc1b8580
1 /*
2 * fileno .c - map a stream to a file descriptor
3 */
4 /* $Header$ */
6 #include <stdio.h>
8 int
9 (fileno)(FILE *stream)
11 return stream->_fd;