diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2005-01-24 18:46:09 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2005-01-24 18:46:09 +0000 |
commit | dbfa92dd947cb26ebfec42c756eb36aa3b7571e5 (patch) | |
tree | b13fbece5917465b1e703dc7452478f0331861db /newlib/libc/sys/linux | |
parent | d96324a5a8688690dcaa55127f3a9e6d961f5600 (diff) | |
download | cygnal-dbfa92dd947cb26ebfec42c756eb36aa3b7571e5.tar.gz cygnal-dbfa92dd947cb26ebfec42c756eb36aa3b7571e5.tar.bz2 cygnal-dbfa92dd947cb26ebfec42c756eb36aa3b7571e5.zip |
2005-01-24 Jeff Johnston <jjohnstn@redhat.com>
* libc/include/string.h: Remove Linux-specific declaration of
strsignal and add #include <sys/string.h>.
* libc/include/sys/string.h: New file.
* libc/include/sys/linux/sys/string.h: New file with strsignal
declaration deleted above.
Diffstat (limited to 'newlib/libc/sys/linux')
-rw-r--r-- | newlib/libc/sys/linux/sys/string.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/newlib/libc/sys/linux/sys/string.h b/newlib/libc/sys/linux/sys/string.h new file mode 100644 index 000000000..25489caea --- /dev/null +++ b/newlib/libc/sys/linux/sys/string.h @@ -0,0 +1,8 @@ +#ifndef _SYS_STRING_H +#define _SYS_STRING_H + +#ifndef __STRICT_ANSI__ +char *_EXFUN(strsignal, (int __signo)); +#endif + +#endif /* _SYS_STRING_H */ |