Loading...
stdio/FreeBSD/fdopen.c Libc-1725.40.4 Libc-825.25
--- Libc/Libc-1725.40.4/stdio/FreeBSD/fdopen.c
+++ Libc/Libc-825.25/stdio/FreeBSD/fdopen.c
@@ -54,15 +54,14 @@
 #include <limits.h>
 #include "un-namespace.h"
 #include "local.h"
-#include "libc_hooks_impl.h"
 
 FILE *
-fdopen(int fd, const char *mode)
+fdopen(fd, mode)
+	int fd;
+	const char *mode;
 {
 	FILE *fp;
 	int flags, oflags, fdflags, tmp;
-
-	libc_hooks_will_read_cstring(mode);
 
 	/*
 	 * File descriptors are a full int, but _file is only a short.