* hosts/h-amix.h, h-i386v.h: Define POSIX_UTIME, not USG.
authorJohn Gilmore <gnu@cygnus>
Fri, 11 Oct 1991 10:41:22 +0000 (10:41 +0000)
committerJohn Gilmore <gnu@cygnus>
Fri, 11 Oct 1991 10:41:22 +0000 (10:41 +0000)
* 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.

bfd/hosts/amix.h
bfd/hosts/hp9000.h
bfd/hosts/i386v.h
bfd/hosts/rs6000.h

index 30a0cf1ac02a253963bef67d4a7fd89a77a7adfc..8ff179f2044d7f0bb66e86f25f9d11800c04e7c4 100644 (file)
@@ -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));
index 249a781ceea18fc5c95d401d0073f2bd808d4262..cbdb6d1308b486f4cc297f09038b76cc3616e7e3 100644 (file)
 #define SEEK_SET 0
 #define SEEK_CUR 1
 
-/*
- * Some things that need to be defined in order to make code written for
- * BSD Unix compile under System V ("USG") Unix.  This file should be
- * conditionally included in the source.
- */
+/* Some things that need to be defined in order to make code written for
+   BSD Unix compile under System V Unix.  */
 
 #include <memory.h>
 #define bcmp(b1,b2,len)                memcmp(b1,b2,len)
index f1018c6711b61a614ec672a99da378b1654f4f75..fe6e2fb74a01e498cde0031ecbd44ee33dc2db17 100644 (file)
@@ -3,6 +3,7 @@
 #include <stdio.h>
 #include <sys/types.h>
 #include <sys/stat.h>
+#include <sys/utime.h>
 #include <ctype.h>
 #include <string.h>
 #include <sys/file.h>
 #define SEEK_SET 0
 #define SEEK_CUR 1
 
-/*
- * Some things that need to be defined in order to make code written for
- * BSD Unix compile under System V ("USG") Unix.  This file should be
- * conditionally included in the source.
- */
+#define        POSIX_UTIME
+
+/* Some things that need to be defined in order to make code written for
+   BSD Unix compile under System V Unix.  */
 
 #include <memory.h>
 #define bcmp(b1,b2,len)                memcmp(b1,b2,len)
index b8f07887046cc76ff95d05298d3affec0be1ac66..4fb70e8f5434e47696e15d230bd419ac0a651f86 100644 (file)
@@ -6,6 +6,8 @@
 #include <ctype.h>
 #include <string.h>
 #include <sys/file.h>
+#include <stdlib.h>            /* for malloc() */
+
 #ifndef O_ACCMODE
 #define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR)
 #endif