Commit 7243ba7d by Richard Kenner

Delete ISCOFF macro which was in #ifdef _AIX.

From-SVN: r3363
parent 2c440f06
......@@ -104,11 +104,6 @@ extern int errno;
#include <sgs.h>
#endif
#ifdef _AIX
#define ISCOFF(magic) \
((magic) == U802WRMAGIC || (magic) == U802ROMAGIC || (magic) == U802TOCMAGIC)
#endif
/* Many versions of ldfcn.h define these. */
#ifdef FREAD
#undef FREAD
......@@ -117,7 +112,11 @@ extern int errno;
#include <ldfcn.h>
/* Mips-news overrides this macro. */
/* Some systems have an ISCOFF macro, but others do not. In some cases
the macro may be wrong. MY_ISCOFF is defined in tm.h files for machines
that either do not have an ISCOFF macro in /usr/include or for those
where it is wrong. */
#ifndef MY_ISCOFF
#define MY_ISCOFF(X) ISCOFF (X)
#endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment