diff options
Diffstat (limited to 'libc/stdio/fread.c')
-rw-r--r-- | libc/stdio/fread.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libc/stdio/fread.c b/libc/stdio/fread.c index 55d3cb2d3..d2fcc70d5 100644 --- a/libc/stdio/fread.c +++ b/libc/stdio/fread.c @@ -7,12 +7,9 @@ #include "_stdio.h" -/* libc_hidden_proto(fread_unlocked) */ #ifdef __DO_UNLOCKED -/* Experimentally off - libc_hidden_proto(memcpy) */ -/* libc_hidden_proto(fflush_unlocked) */ size_t fread_unlocked(void * __restrict ptr, size_t size, size_t nmemb, FILE * __restrict stream) @@ -90,14 +87,12 @@ size_t fread_unlocked(void * __restrict ptr, size_t size, size_t nmemb, libc_hidden_def(fread_unlocked) #ifndef __UCLIBC_HAS_THREADS__ -/* libc_hidden_proto(fread) */ strong_alias(fread_unlocked,fread) libc_hidden_def(fread) #endif #elif defined __UCLIBC_HAS_THREADS__ -/* libc_hidden_proto(fread) */ size_t fread(void * __restrict ptr, size_t size, size_t nmemb, register FILE * __restrict stream) { |