diff options
author | Zack Weinberg <zack@rabi.phys.columbia.edu> | 1999-03-19 00:47:41 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1999-03-18 17:47:41 -0700 |
commit | 9c30c0e76a04d193c7ffa850c2357931b728d87a (patch) | |
tree | 3f666fa4225b96bda8e31b545e0a8ca45460b3d9 /gcc/acconfig.h | |
parent | 21677228916e96eff78fb5ad3b84f147daec690c (diff) | |
download | gcc-9c30c0e76a04d193c7ffa850c2357931b728d87a.tar.gz |
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/acconfig.h')
-rw-r--r-- | gcc/acconfig.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gcc/acconfig.h b/gcc/acconfig.h index 5c78dbea5d8..3aae71e13be 100644 --- a/gcc/acconfig.h +++ b/gcc/acconfig.h @@ -75,6 +75,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 @@ -99,6 +102,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 |