aboutsummaryrefslogtreecommitdiff
path: root/newlib
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2001-08-26 02:28:33 +0000
committerChristopher Faylor <me@cgf.cx>2001-08-26 02:28:33 +0000
commit8e26d5b5a766b0e396ed573b67a4f2b50067895c (patch)
treea3a49cbd8c079132af6ae190adcfec44b22b6755 /newlib
parente32b4e81cbab99dc756559f2ba05e61a3f210cde (diff)
downloadnewlib-8e26d5b5a766b0e396ed573b67a4f2b50067895c.zip
newlib-8e26d5b5a766b0e396ed573b67a4f2b50067895c.tar.gz
newlib-8e26d5b5a766b0e396ed573b67a4f2b50067895c.tar.bz2
* libc/include/sys/errno.h: Add a cautionary comment.
Diffstat (limited to 'newlib')
-rw-r--r--newlib/ChangeLog4
-rw-r--r--newlib/libc/include/sys/errno.h2
2 files changed, 6 insertions, 0 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog
index d4e94e4..a0aa2a8 100644
--- a/newlib/ChangeLog
+++ b/newlib/ChangeLog
@@ -1,3 +1,7 @@
+Sat Aug 25 22:22:25 2001 Christopher Faylor <cgf@cygnus.com>
+
+ * libc/include/sys/errno.h: Add a cautionary comment.
+
2001-08-21 Jeff Johnston <jjohnstn@redhat.com>
* libc/stdlib/mallocr.c [!defined(MALLOC_ALIGNMENT)]: Add conditional
diff --git a/newlib/libc/include/sys/errno.h b/newlib/libc/include/sys/errno.h
index 672d99e..26b5692 100644
--- a/newlib/libc/include/sys/errno.h
+++ b/newlib/libc/include/sys/errno.h
@@ -15,6 +15,8 @@ extern "C" {
extern int *__errno _PARAMS ((void));
#endif
+/* Please don't use these variables directly.
+ Use strerror instead. */
extern __IMPORT _CONST char * _CONST _sys_errlist[];
extern __IMPORT int _sys_nerr;
#ifdef __CYGWIN__