Delete ISCOFF macro which was in #ifdef _AIX.

From-SVN: r3363
This commit is contained in:
Richard Kenner 1993-01-27 06:46:40 -05:00
parent 2c440f06b8
commit 7243ba7d92
1 changed files with 5 additions and 6 deletions

View File

@ -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