aboutsummaryrefslogtreecommitdiff
path: root/gcc/config.in
diff options
context:
space:
mode:
authorZack Weinberg <zack@rabi.phys.columbia.edu>1999-03-19 00:47:41 +0000
committerJeff Law <law@gcc.gnu.org>1999-03-18 17:47:41 -0700
commit9c30c0e76a04d193c7ffa850c2357931b728d87a (patch)
tree3f666fa4225b96bda8e31b545e0a8ca45460b3d9 /gcc/config.in
parent21677228916e96eff78fb5ad3b84f147daec690c (diff)
downloadgcc-9c30c0e76a04d193c7ffa850c2357931b728d87a.zip
gcc-9c30c0e76a04d193c7ffa850c2357931b728d87a.tar.gz
gcc-9c30c0e76a04d193c7ffa850c2357931b728d87a.tar.bz2
system.h: Use putc_unlocked...
* 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. From-SVN: r25855
Diffstat (limited to 'gcc/config.in')
-rw-r--r--gcc/config.in9
1 files changed, 9 insertions, 0 deletions
diff --git a/gcc/config.in b/gcc/config.in
index b2aeaf4..dc6cf2e 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