xref: /plan9/sys/src/ape/lib/ap/stdio/fileno.c (revision 3e12c5d1bb89fc02707907988834ef147769ddaf)
1 /*
2  * Posix stdio -- fileno
3  */
4 #include "iolib.h"
fileno(FILE * f)5 int fileno(FILE *f){
6 	if(f==NULL)
7 		return -1;
8 	else
9 		return f->fd;
10 }
11