diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-09-19 05:16:54 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-09-19 05:16:54 +0000 |
commit | f095d8f2244ba49d8066c5940556fec1091e6b54 (patch) | |
tree | 85645bba1f9b79b0a2b6f79d10eac983e1e535c9 /gcc/f/proj.h | |
parent | e82a1ee47e3fd969f3a73210bb070483ea1b28ed (diff) | |
download | gcc-f095d8f2244ba49d8066c5940556fec1091e6b54.tar.gz |
* proj.h (FFEPROJ_BSEARCH): Delete all references.
(FFEPROJ_STRTOUL): Likewise.
* proj.c (bsearch): Compile this if no bsearch is provided by the
host system.
(strtoul): Similarly.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@15561 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/f/proj.h')
-rw-r--r-- | gcc/f/proj.h | 20 |
1 files changed, 2 insertions, 18 deletions
diff --git a/gcc/f/proj.h b/gcc/f/proj.h index 04460700f07..d05b1c32b8d 100644 --- a/gcc/f/proj.h +++ b/gcc/f/proj.h @@ -43,24 +43,8 @@ the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA simply remove all but the simplest and most useful code (which is still in proj.c). - So, if you find your system can't link because bsearch() or strtoul() - aren't found, please just fix your system, or hand-edit the code - below as appropriate. I DO NOT WANT ANY "BUG REPORTS" ABOUT THIS. - g77 requires a working ANSI C environment, and if bsearch() and strtoul() - do not exist, or if <assert.h> isn't found, etc., then you don't have - one, and it is not g77's fault. If it turns out g77 is simply - referring to the wrong system header file -- something I can verify - myself using my copy of the ANSI C standard -- I would like to know - about that. Otherwise, g77 is not the place to fix problems with your - ANSI C implementation, though perhaps gcc might be. - -- burley@gnu.ai.mit.edu 1995-03-24 */ - -#ifndef FFEPROJ_BSEARCH -#define FFEPROJ_BSEARCH 1 /* 0=>use slow code in proj.c. */ -#endif -#ifndef FFEPROJ_STRTOUL -#define FFEPROJ_STRTOUL 1 /* 0=>use untested code in proj.c. */ -#endif + XXX Not entirely true anymore. We do want to cater to broken systems + again by using autoconf to handle the braindamage for us. */ /* Include files everyone gets. */ |