summaryrefslogtreecommitdiff
path: root/libiberty/strerror.c
diff options
context:
space:
mode:
authorZack Weinberg <zackw@panix.com>2000-05-29 20:45:32 +0000
committerZack Weinberg <zackw@panix.com>2000-05-29 20:45:32 +0000
commit6aa3a8a5d23c6c4498fe80fd1b944685f9ba0cdd (patch)
treeb409d7e5a81b20cab680a0c1cc93f9108132cc35 /libiberty/strerror.c
parent474ddc1ba7e55d367221262792fe6fac77293881 (diff)
downloadgdb-6aa3a8a5d23c6c4498fe80fd1b944685f9ba0cdd.tar.gz
* hashtab.c, partition.c, xmemdup.c: Include string.h
if HAVE_STRING_H. * pexecute.c, xexit.c: Include stdlib.h if HAVE_STDLIB_H. * objalloc.c: Include config.h. Include stdlib.h and don't declare malloc or free if HAVE_STDLIB_H. * strerror.c, strsignal.c: Include stdlib.h if HAVE_STDLIB_H, else declare malloc without prototype. Include string.h if HAVE_STRING_H, else declare memset without prototype. Don't include stddef.h. * sort.c: Bring over from GCC.
Diffstat (limited to 'libiberty/strerror.c')
-rw-r--r--libiberty/strerror.c19
1 files changed, 11 insertions, 8 deletions
diff --git a/libiberty/strerror.c b/libiberty/strerror.c
index 644cc75462a..0dd2220cd73 100644
--- a/libiberty/strerror.c
+++ b/libiberty/strerror.c
@@ -25,14 +25,17 @@
/* Routines imported from standard C runtime libraries. */
-#ifdef __STDC__
-#include <stddef.h>
-extern void *malloc (size_t size); /* 4.10.3.3 */
-extern void *memset (void *s, int c, size_t n); /* 4.11.6.1 */
-#else /* !__STDC__ */
-extern char *malloc (); /* Standard memory allocater */
-extern char *memset ();
-#endif /* __STDC__ */
+#ifdef HAVE_STDLIB_H
+#include <stdlib.h>
+#else
+extern PTR malloc ();
+#endif
+
+#ifdef HAVE_STRING_H
+#include <string.h>
+#else
+extern PTR memset ();
+#endif
#ifndef MAX
# define MAX(a,b) ((a) > (b) ? (a) : (b))