diff options
author | Ken Raeburn <raeburn@cygnus> | 1994-04-20 22:42:57 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@cygnus> | 1994-04-20 22:42:57 +0000 |
commit | 71363c410e9988e74aba0879de13d181a1acca7a (patch) | |
tree | adf198da61b4da6a3b42bd1ddcd9238f6d6c35d5 /bfd/hosts | |
parent | 59746d9ff1c2bcd8aac83ca71f56e58b89dac34b (diff) | |
download | gdb-71363c410e9988e74aba0879de13d181a1acca7a.zip gdb-71363c410e9988e74aba0879de13d181a1acca7a.tar.gz gdb-71363c410e9988e74aba0879de13d181a1acca7a.tar.bz2 |
* hosts/i386aix.h: Changes to avoid prototypes conflicts with the ones defined
in stdlib.h. (From Minh Tran-Le.)
Diffstat (limited to 'bfd/hosts')
-rw-r--r-- | bfd/hosts/i386aix.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/bfd/hosts/i386aix.h b/bfd/hosts/i386aix.h index 871714f..ef621ca 100644 --- a/bfd/hosts/i386aix.h +++ b/bfd/hosts/i386aix.h @@ -11,6 +11,7 @@ #include <ctype.h> #include <string.h> #include <sys/file.h> +#include <stdlib.h> #ifndef O_ACCMODE #define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR) @@ -26,10 +27,7 @@ extern void exit PARAMS ((int)); extern int fclose PARAMS ((FILE*)); extern void free PARAMS ((PTR)); extern int fseek PARAMS ((FILE*, long, int)); -extern PTR malloc PARAMS ((unsigned)); extern void perror PARAMS ((CONST char *)); -extern int qsort PARAMS ((void *data, int els, int siz, int func())); -extern PTR realloc PARAMS ((PTR, unsigned)); extern char *getenv(); extern int chmod(); |