Files
photon/libc/stdio/fileno.c

8 lines
87 B
C

#include <__fio.h>
#include <stdio.h>
int fileno(FILE *f)
{
return __fileno(f);
}