Loading...
stdio/FreeBSD/gets.c Libc-1725.40.4 Libc-825.26
--- Libc/Libc-1725.40.4/stdio/FreeBSD/gets.c
+++ Libc/Libc-825.26/stdio/FreeBSD/gets.c
@@ -47,12 +47,13 @@
 __warn_references(gets, "warning: this program uses gets(), which is unsafe.");
 
 char *
-gets(char *buf)
+gets(buf)
+	char *buf;
 {
 	int c;
 	char *s;
 	static int warned;
-	static const char w[] =
+	static char w[] =
 	    "warning: this program uses gets(), which is unsafe.\n";
 
 	FLOCKFILE(stdin);