diff options
Diffstat (limited to 'lib/libc/stdio/fread.c')
-rw-r--r-- | lib/libc/stdio/fread.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/lib/libc/stdio/fread.c b/lib/libc/stdio/fread.c index 13776382fbb7..65d9ecf94366 100644 --- a/lib/libc/stdio/fread.c +++ b/lib/libc/stdio/fread.c @@ -32,15 +32,12 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char sccsid[] = "@(#)fread.c 8.2 (Berkeley) 12/11/93"; -#endif /* LIBC_SCCS and not lint */ -#include <sys/cdefs.h> #include "namespace.h" #include <errno.h> #include <stdint.h> #include <stdio.h> #include <string.h> +#include <ssp/ssp.h> #include "un-namespace.h" #include "local.h" #include "libc_private.h" @@ -50,7 +47,8 @@ static char sccsid[] = "@(#)fread.c 8.2 (Berkeley) 12/11/93"; */ size_t -fread(void * __restrict buf, size_t size, size_t count, FILE * __restrict fp) +__ssp_real(fread)(void * __restrict buf, size_t size, size_t count, + FILE * __restrict fp) { size_t ret; |