diff options
author | Torbjorn Granlund <tege@gnu.org> | 1992-11-21 23:31:11 +0000 |
---|---|---|
committer | Torbjorn Granlund <tege@gnu.org> | 1992-11-21 23:31:11 +0000 |
commit | 1428e3caef68ebfdf190c01aab7e9b4dbeaf22b0 (patch) | |
tree | 0a3fe868581228d8591df470a2dea519db728bc8 /gcc | |
parent | 52ef876432b6b72bcd1c31b634b955a86abd04f0 (diff) | |
download | gcc-1428e3caef68ebfdf190c01aab7e9b4dbeaf22b0.zip gcc-1428e3caef68ebfdf190c01aab7e9b4dbeaf22b0.tar.gz gcc-1428e3caef68ebfdf190c01aab7e9b4dbeaf22b0.tar.bz2 |
Remove #ifdef hpux stuff.
(S_ISDIR): Remove.
From-SVN: r2770
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/pa/xm-pa.h | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/gcc/config/pa/xm-pa.h b/gcc/config/pa/xm-pa.h index f6bdea8..fa50467 100644 --- a/gcc/config/pa/xm-pa.h +++ b/gcc/config/pa/xm-pa.h @@ -18,23 +18,7 @@ You should have received a copy of the GNU General Public License along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ -#ifdef hpux - -#include <magic.h> -#if defined(SHL_MAGIC) -#define hpux8 1 -#define HAVE_VPRINTF -#endif - -#define USG -#define bcopy(a,b,c) memcpy (b,a,c) -#define bzero(a,b) memset (a,0,b) -#define bcmp(a,b,c) memcmp (a,b,c) - -#else /* hpux */ -#define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR) extern int errno; -#endif /* hpux */ /* #defines that need visibility everywhere. */ #define FALSE 0 @@ -62,13 +46,6 @@ extern int errno; #define SUCCESS_EXIT_CODE 0 #define FATAL_EXIT_CODE 33 -#if 0 -/* If compiled with GNU C, use the built-in alloca */ -#ifdef __GNUC__ -#define alloca __builtin_alloca -#endif -#endif - /* Don't try to use sys_siglist. */ #define NO_SYS_SIGLIST |