summaryrefslogtreecommitdiff
path: root/lib/libc/stdio/feof_unlocked.c
blob: 4d7d9d5351d7f3df7c688b840c4cee8d236a7ded (plain)
1
2
3
4
5
6
7
#include <__stdio.h>
#include <stdio.h>

int feof_unlocked(FILE *stream)
{
	return (stream) ? stream->eof : 0;
}