diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-03-19 00:47:41 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-03-19 00:47:41 +0000 |
commit | f29fb72e7550730edafa3eda4cd838b8db8d4770 (patch) | |
tree | 3f666fa4225b96bda8e31b545e0a8ca45460b3d9 /gcc/config.in | |
parent | ac9419e12cf1137c23cf673cb844c03453ba5fcf (diff) | |
download | gcc-f29fb72e7550730edafa3eda4cd838b8db8d4770.tar.gz |
* system.h: Use putc_unlocked, fputc_unlocked, and
fputs_unlocked only if putc_unlocked has a prototype already.
Prototype fputs_unlocked if necessary.
* configure.in: Check for prototypes of putc_unlocked and
fputs_unlocked.
* acconfig.h: Updated.
* config.in, configure: Rebuilt.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@25855 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config.in')
-rw-r--r-- | gcc/config.in | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gcc/config.in b/gcc/config.in index b2aeaf4049e..dc6cf2e937e 100644 --- a/gcc/config.in +++ b/gcc/config.in @@ -76,6 +76,9 @@ /* Whether atol must be declared even if <stdlib.h> is included. */ #undef NEED_DECLARATION_ATOL +/* Whether atof must be declared even if <stdlib.h> is included. */ +#undef NEED_DECLARATION_ATOF + /* Whether sbrk must be declared even if <stdlib.h> is included. */ #undef NEED_DECLARATION_SBRK @@ -100,6 +103,12 @@ /* Whether setrlimit must be declared even if <sys/resource.h> is included. */ #undef NEED_DECLARATION_SETRLIMIT +/* Whether putc_unlocked must be declared even if <stdio.h> is included. */ +#undef NEED_DECLARATION_PUTC_UNLOCKED + +/* Whether fputs_unlocked must be declared even if <stdio.h> is included. */ +#undef NEED_DECLARATION_FPUTS_UNLOCKED + /* Define if you want expensive run-time checks. */ #undef ENABLE_CHECKING |