Pristine Ack-5.5
[Ack-5.5.git] / lang / cem / libcc.ansi / stdio / fileno.c
1 /*
2  * fileno .c - map a stream to a file descriptor
3  */
4 /* $Id: fileno.c,v 1.2 1994/06/24 11:49:09 ceriel Exp $ */
5
6 #include        <stdio.h>
7
8 int
9 (fileno)(FILE *stream)
10 {
11         return stream->_fd;
12 }