diff options
author | Christopher Faylor <me@cgf.cx> | 2000-09-06 20:46:27 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2000-09-06 20:46:27 +0000 |
commit | a385ae75081696ea9d0299cdce50d4261a22fa35 (patch) | |
tree | 23c31cd729ba845f08499ef2a6282713de91cec5 /newlib/libc/include/stdlib.h | |
parent | b16bb9f7186b3e38802a3cd88b57d1f23f57604a (diff) | |
download | cygnal-a385ae75081696ea9d0299cdce50d4261a22fa35.tar.gz cygnal-a385ae75081696ea9d0299cdce50d4261a22fa35.tar.bz2 cygnal-a385ae75081696ea9d0299cdce50d4261a22fa35.zip |
* Makefile.am: Fix space vs. tab problem in install-data-local.
* Makefile.in: Regenerate.
* libc/include/_ansi.h (_EXFUN): Define specially for __CYGWIN__.
(_EXPARM): New macro for defining a function parameter.
* libc/include/stdlib.h: Use _EXPARM.
* libc/stdlib/mallocr.c: Don't build cfree for Cygwin.
Diffstat (limited to 'newlib/libc/include/stdlib.h')
-rw-r--r-- | newlib/libc/include/stdlib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/include/stdlib.h b/newlib/libc/include/stdlib.h index 2d2b8b176..f2feebe30 100644 --- a/newlib/libc/include/stdlib.h +++ b/newlib/libc/include/stdlib.h @@ -56,7 +56,7 @@ _PTR _EXFUN(bsearch,(const _PTR __key, const _PTR __base, size_t __nmemb, size_t __size, - int _EXFUN((*_compar),(const _PTR, const _PTR)))); + int _EXPARM(_compar,(const _PTR, const _PTR)))); _PTR _EXFUN(calloc,(size_t __nmemb, size_t __size)); div_t _EXFUN(div,(int __numer, int __denom)); _VOID _EXFUN(exit,(int __status) _ATTRIBUTE ((noreturn))); |