diff options
author | John Gilmore <gnu@cygnus> | 1991-10-11 10:41:22 +0000 |
---|---|---|
committer | John Gilmore <gnu@cygnus> | 1991-10-11 10:41:22 +0000 |
commit | 06d0bdef536c1f089b1b340a35e7b962bfc051b6 (patch) | |
tree | e9259152f0fe4d6199aa682c5196dba59d50096c /bfd/hosts/amix.h | |
parent | 239326c84fe370e473b89971a3b825ab7024521e (diff) | |
download | gdb-06d0bdef536c1f089b1b340a35e7b962bfc051b6.zip gdb-06d0bdef536c1f089b1b340a35e7b962bfc051b6.tar.gz gdb-06d0bdef536c1f089b1b340a35e7b962bfc051b6.tar.bz2 |
* hosts/h-amix.h, h-i386v.h: Define POSIX_UTIME, not USG.
* hosts/h-hp9000.h: Remove USG comment.
* hosts/h-rs6000.h: Include <stdlib.h> for malloc.
* hosts/h-news.h, h-sparc-64.h: New config files that had
previously been kludged in the <sysdep.h> file.
Diffstat (limited to 'bfd/hosts/amix.h')
-rw-r--r-- | bfd/hosts/amix.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/bfd/hosts/amix.h b/bfd/hosts/amix.h index 30a0cf1..8ff179f 100644 --- a/bfd/hosts/amix.h +++ b/bfd/hosts/amix.h @@ -1,11 +1,10 @@ -/* Not sure why this is needed -- Fred Fish put it in */ -#define USG - +/* Amiga Unix host system */ #include <fcntl.h> #include <errno.h> #include <stdio.h> #include <sys/types.h> #include <sys/stat.h> +#include <utime.h> #include <ctype.h> #include <string.h> #include <sys/file.h> @@ -16,6 +15,8 @@ #define SEEK_SET 0 #define SEEK_CUR 1 +#define POSIX_UTIME + extern PROTO(int, abort,(void)); extern PROTO(int, close,(int)); extern PROTO(void, exit,(int)); |