diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-08-11 15:56:58 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-08-11 15:56:58 +0000 |
commit | 071cd279a6ac9efccecd8171777a9fc99ac4796a (patch) | |
tree | b2e1ea43e0bdba8cca9bb02ed01f5e3da5a955a6 /gcc/config/xm-svr4.h | |
parent | 5b48acd0eb694e43d357e6ad8f2daa604ad8d2ff (diff) | |
download | ppe42-gcc-071cd279a6ac9efccecd8171777a9fc99ac4796a.tar.gz ppe42-gcc-071cd279a6ac9efccecd8171777a9fc99ac4796a.zip |
Initial revision
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@14764 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/xm-svr4.h')
-rw-r--r-- | gcc/config/xm-svr4.h | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/gcc/config/xm-svr4.h b/gcc/config/xm-svr4.h new file mode 100644 index 00000000000..30084322510 --- /dev/null +++ b/gcc/config/xm-svr4.h @@ -0,0 +1,35 @@ +/* Configuration for GNU C-compiler for hosts running System V Release 4 + Copyright (C) 1988 Free Software Foundation, Inc. + +This file is part of GNU CC. + +GNU CC is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2, or (at your option) +any later version. + +GNU CC is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +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, 59 Temple Place - Suite 330, +Boston, MA 02111-1307, USA. */ + +#define bcopy(src,dst,len) memcpy ((dst),(src),(len)) +#define bzero(dst,len) memset ((dst),0,(len)) +#define bcmp(left,right,len) memcmp ((left),(right),(len)) + +#define rindex strrchr +#define index strchr + +#define USG +#define HAVE_VPRINTF + +#define POSIX + +/* SVR4 provides no sys_siglist, + but does offer the same data under another name. */ +#define sys_siglist _sys_siglist |