diff options
author | Jason Molenda <jmolenda@apple.com> | 1998-04-23 19:53:35 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 1998-04-23 19:53:35 +0000 |
commit | 21cbc60c52be1f9658e440322f49c1fb6d33078c (patch) | |
tree | f177a8210c9e75a2acf25cdc02b839997760b270 /gdb/gdb_string.h | |
parent | ca39bf77b061e85529dbcc924aab350c51780194 (diff) | |
download | gdb-21cbc60c52be1f9658e440322f49c1fb6d33078c.zip gdb-21cbc60c52be1f9658e440322f49c1fb6d33078c.tar.gz gdb-21cbc60c52be1f9658e440322f49c1fb6d33078c.tar.bz2 |
Thu Apr 23 12:52:21 1998 Philippe De Muyter <phdm@macqel.be>
* configure.in (strerror): Check if function must be declared.
* acconfig.h (NEED_DECLARATION_STRERROR): New define slot.
* gdb_string.h (strerror): Function declaration issued if
NEED_DECLARATION_STRERROR.
* configure, config.in : Files regenerated.
Diffstat (limited to 'gdb/gdb_string.h')
-rw-r--r-- | gdb/gdb_string.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/gdb/gdb_string.h b/gdb/gdb_string.h index 6b8fb82..7cfef64 100644 --- a/gdb/gdb_string.h +++ b/gdb/gdb_string.h @@ -45,10 +45,6 @@ extern char *strstr PARAMS ((const char *, const char *)); /* X3.159-1989 4.11. extern char *strtok PARAMS ((char *, const char *)); /* X3.159-1989 4.11.5.8 */ #endif -#ifndef strerror -extern char *strerror PARAMS ((int)); /* X3.159-1989 4.11.6.2 */ -#endif - # ifdef HAVE_MEMORY_H # include <memory.h> # else @@ -57,6 +53,12 @@ extern void *memcpy(); extern void *memmove(); extern int memcmp(); # endif +#endif /* STDC_HEADERS */ + +#ifdef NEED_DECLARATION_STRERROR +#ifndef strerror +extern char *strerror PARAMS ((int)); /* X3.159-1989 4.11.6.2 */ +#endif #endif #ifndef strdup |