Loading...
--- Libc/Libc-1725.40.4/stdio/FreeBSD/fopen.c
+++ Libc/Libc-825.24/stdio/FreeBSD/fopen.c
@@ -56,17 +56,15 @@
#include "un-namespace.h"
#include "local.h"
-#include "libc_hooks_impl.h"
FILE *
-fopen(const char * __restrict file, const char * __restrict mode)
+fopen(file, mode)
+ const char * __restrict file;
+ const char * __restrict mode;
{
FILE *fp;
int f;
int flags, oflags;
-
- libc_hooks_will_read_cstring(file);
- libc_hooks_will_read_cstring(mode);
if ((flags = __sflags(mode, &oflags)) == 0)
return (NULL);