diff options
author | Jason Molenda <jmolenda@apple.com> | 1998-04-27 17:44:26 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 1998-04-27 17:44:26 +0000 |
commit | a9eeaad7655dc0ff1f268f93563edd73de4de063 (patch) | |
tree | 7e168d175d4c0b39a79c4b3a9031a33a0e30fe9f /gdb/gdb_string.h | |
parent | 030f419b085c2b14a465c46be5229a35fe124cab (diff) | |
download | gdb-a9eeaad7655dc0ff1f268f93563edd73de4de063.zip gdb-a9eeaad7655dc0ff1f268f93563edd73de4de063.tar.gz gdb-a9eeaad7655dc0ff1f268f93563edd73de4de063.tar.bz2 |
Mon Apr 27 10:43:04 1998 Jason Molenda (crash@bugshack.cygnus.com)
* gdb_string.h (strdup): Don't specify arguments in prototype.
Diffstat (limited to 'gdb/gdb_string.h')
-rw-r--r-- | gdb/gdb_string.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/gdb_string.h b/gdb/gdb_string.h index 7cfef64..4001fab 100644 --- a/gdb/gdb_string.h +++ b/gdb/gdb_string.h @@ -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) */ |