* libc/include/string.h: Make strsignal() available unconditionally.

This commit is contained in:
Corinna Vinschen 2011-01-10 10:59:42 +00:00
parent 6e179dda3f
commit 84ca64afa6
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2011-01-08 Joel Sherrill <joel.sherrill@oarcorp.com>
* libc/include/string.h: Make strsignal() available unconditionally.
2011-01-07 Ralf Corsepius <ralf.corsepius@rtems.org>
* libc/sys/rtems/crt0.c: Adjust free() and calloc() to match their

View File

@ -74,10 +74,10 @@ size_t _EXFUN(strnlen,(const char *, size_t));
char *_EXFUN(strsep,(char **, const char *));
char *_EXFUN(strlwr,(char *));
char *_EXFUN(strupr,(char *));
#ifdef __CYGWIN__
#ifndef DEFS_H /* Kludge to work around problem compiling in gdb */
char *_EXFUN(strsignal, (int __signo));
#endif
#ifdef __CYGWIN__
int _EXFUN(strtosigno, (const char *__name));
#endif