* aux-coff.h: Rename from aux.h, to avoid problems on hapless DOS
authorIan Lance Taylor <ian@airs.com>
Fri, 9 Feb 1996 15:53:40 +0000 (15:53 +0000)
committerIan Lance Taylor <ian@airs.com>
Fri, 9 Feb 1996 15:53:40 +0000 (15:53 +0000)
systems which think that aux is a com port.

include/coff/.Sanitize
include/coff/aux-coff.h [new file with mode: 0644]
include/coff/aux.h [deleted file]

index b84f971035de477e8ba5fdc692047d51ce4cb926..9739f0605bd8c40f55e1587e2a455a71d01e4dc4 100644 (file)
@@ -29,7 +29,7 @@ a29k.h
 alpha.h
 apollo.h
 arm.h
-aux.h
+aux-coff.h
 ecoff.h
 h8300.h
 h8500.h
diff --git a/include/coff/aux-coff.h b/include/coff/aux-coff.h
new file mode 100644 (file)
index 0000000..c89c124
--- /dev/null
@@ -0,0 +1,31 @@
+/* Modifications of internal.h and m68k.h needed by A/UX
+   Suggested by Ian Lance Taylor <ian@cygnus.com> */
+
+#ifndef GNU_COFF_AUX_H
+#define GNU_COFF_AUX_H 1
+
+#include "coff/internal.h"
+#include "coff/m68k.h"
+
+/* Section contains 64-byte padded pathnames of shared libraries */
+#undef STYP_LIB
+#define STYP_LIB 0x200
+
+/* Section contains shared library initialization code */
+#undef STYP_INIT
+#define STYP_INIT 0x400
+
+/* Section contains .ident information */
+#undef STYP_IDENT
+#define STYP_IDENT 0x800
+
+/* Section types used by bfd and gas not defined (directly) by A/UX */
+#undef STYP_OVER
+#define STYP_OVER 0
+#undef STYP_INFO
+#define STYP_INFO STYP_IDENT
+
+/* Traditional name of the section tagged with STYP_LIB */
+#define _LIB ".lib"
+
+#endif /* GNU_COFF_AUX_H */
diff --git a/include/coff/aux.h b/include/coff/aux.h
deleted file mode 100644 (file)
index c89c124..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-/* Modifications of internal.h and m68k.h needed by A/UX
-   Suggested by Ian Lance Taylor <ian@cygnus.com> */
-
-#ifndef GNU_COFF_AUX_H
-#define GNU_COFF_AUX_H 1
-
-#include "coff/internal.h"
-#include "coff/m68k.h"
-
-/* Section contains 64-byte padded pathnames of shared libraries */
-#undef STYP_LIB
-#define STYP_LIB 0x200
-
-/* Section contains shared library initialization code */
-#undef STYP_INIT
-#define STYP_INIT 0x400
-
-/* Section contains .ident information */
-#undef STYP_IDENT
-#define STYP_IDENT 0x800
-
-/* Section types used by bfd and gas not defined (directly) by A/UX */
-#undef STYP_OVER
-#define STYP_OVER 0
-#undef STYP_INFO
-#define STYP_INFO STYP_IDENT
-
-/* Traditional name of the section tagged with STYP_LIB */
-#define _LIB ".lib"
-
-#endif /* GNU_COFF_AUX_H */
This page took 0.027013 seconds and 4 git commands to generate.