git: 9front

ref: c52ae59ec9f91815b5e889af62a8f35cda0a4e1a
dir: /sys/src/ape/lib/ap/stdio/fileno.c/

View raw version
/*
 * Posix stdio -- fileno
 */
#include "iolib.h"
int fileno(FILE *f){
	if(f==NULL)
		return -1;
	else
		return f->fd;
}