git: 9front

ref: 41fcb1d022bcf038eb172eaf7e7949dd2a24c42f
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;
}