3 /* _PDCLIB_fillbuffer( struct _PDCLIB_file_t * stream )
5 This file is part of the Public Domain C Library (PDCLib).
6 Permission is granted to use, modify, and / or redistribute at will.
9 /* This is a stub version of _PDCLIB_fillbuffer
15 #include <_PDCLIB_glue.h>
18 int _PDCLIB_fillbuffer( struct _PDCLIB_file_t * stream )
21 stream->status |= _PDCLIB_EOFFLAG;
28 #include <_PDCLIB_test.h>
32 /* Testing covered by ftell.c */