aboutsummaryrefslogtreecommitdiffstats
path: root/io/wrap/feof.c
blob: 6e4b42db029f987e021e8e826b3a9b3b43a190a8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#define NO_OPAQUE_TYPE
#include "io.h"
#include <stdio.h>
#include <wchar.h>

int const _eof_wrap = EOF;
wint_t const _weof_wrap = WEOF;

int _feof_wrap(FILE *stream){
    return feof(stream);
}