Mon Apr 27 10:43:04 1998 Jason Molenda (crash@bugshack.cygnus.com)
authorJason Molenda <jmolenda@apple.com>
Mon, 27 Apr 1998 17:44:26 +0000 (17:44 +0000)
committerJason Molenda <jmolenda@apple.com>
Mon, 27 Apr 1998 17:44:26 +0000 (17:44 +0000)
        * gdb_string.h (strdup): Don't specify arguments in prototype.

gdb/ChangeLog
gdb/gdb_string.h

index c8d00b726c92366c082c32e8d6674f86333c087d..2e1bf0206c8d792aa66c8ac4aeb8d5380125cb6f 100644 (file)
@@ -1,3 +1,7 @@
+Mon Apr 27 10:43:04 1998  Jason Molenda  (crash@bugshack.cygnus.com)
+
+        * gdb_string.h (strdup): Don't specify arguments in prototype.
+
 Sun Apr 26 07:57:21 1998  Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
 
        * rs6000-nat.c (vmap_ldinfo):  Issue warning instead of error if
index 7cfef642e96682ff0c349af1113f55c33624273c..4001fab7942e5e6ae22baf76ab91e81d23a6628f 100644 (file)
@@ -62,7 +62,7 @@ extern char *strerror PARAMS ((int)); /* X3.159-1989  4.11.6.2 */
 #endif
 
 #ifndef strdup
-extern char *strdup PARAMS ((const char *));
+extern char *strdup (); /* full prototype collides w/ some OSes (AIX 3.2.5) */
 #endif
 
 #endif /* !defined(GDB_STRING_H) */
This page took 0.026038 seconds and 4 git commands to generate.