diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1995-07-26 09:22:15 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1995-07-26 09:22:15 -0400 |
commit | 41dc1085de56e64374db9c7796348999a99936fd (patch) | |
tree | 33e39bce6f0f2095d0376cf67aab938e8dad69fe /gcc | |
parent | c3cf037530f1e8a181ebfd85e8eef5ab5ba2b007 (diff) | |
download | gcc-41dc1085de56e64374db9c7796348999a99936fd.zip gcc-41dc1085de56e64374db9c7796348999a99936fd.tar.gz gcc-41dc1085de56e64374db9c7796348999a99936fd.tar.bz2 |
(HAVE_STRERROR): Define.
(__BSD_NET2__): Define.
From-SVN: r10167
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/pa/xm-pa.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/gcc/config/pa/xm-pa.h b/gcc/config/pa/xm-pa.h index a34513e..8138cfa 100644 --- a/gcc/config/pa/xm-pa.h +++ b/gcc/config/pa/xm-pa.h @@ -1,5 +1,5 @@ /* Configuration for GNU C-compiler for PA-RISC. - Copyright (C) 1988 Free Software Foundation, Inc. + Copyright (C) 1988, 1995 Free Software Foundation, Inc. Contributed by Michael Tiemann (tiemann@cygnus.com). This file is part of GNU CC. @@ -50,6 +50,13 @@ extern int errno; /* Don't try to use sys_siglist. */ #define NO_SYS_SIGLIST +/* We have strerror, don't try to use sys_errlist. */ +#define HAVE_STRERROR + +/* 4.3BSD, OSF1 and Lites on the PA are all derived from NET2 or + later code from Berkeley. */ +#define __BSD_NET2__ + /* HP's compiler has problems with enum bitfields. */ #define ONLY_INT_FIELDS |