diff options
Diffstat (limited to 'src/stdio/fread.c')
-rw-r--r-- | src/stdio/fread.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/stdio/fread.c b/src/stdio/fread.c index 7929d495..bf8c5fd2 100644 --- a/src/stdio/fread.c +++ b/src/stdio/fread.c @@ -2,6 +2,7 @@ #include "_stdio.h" /** read directly from a file stream **/ + size_t fread(void * restrict ptr, size_t size, size_t nmemb, FILE * restrict stream) { unsigned char *buf = ptr; @@ -34,6 +35,7 @@ from ARGUMENT(stream) into the array at ARGUMENT(ptr). The file position indicate is advanced by the number of bytes read. ***/ + /* STDC(1) */ |