fxlibc/src/stdio/fileno.c

7 lines
61 B
C

#include <stdio.h>
int fileno(FILE *fp)
{
return fp->fd;
}