summaryrefslogtreecommitdiffstats
path: root/usr/klibc/stdio/feof.c
blob: 4215c113dae7d3fb23dd4e1e6a2cd0870359cff2 (plain)
1
2
3
4
5
6
7
8
#define __NO_STDIO_INLINES
#include "stdioint.h"

int feof(FILE *__f)
{
	return __f->_IO_eof;
}
__ALIAS(int, feof_unlocked, (FILE *), feof)