Change type of sys_errlist[] to match definition in /usr/include/errno.h

This commit is contained in:
Nick Clifton 1998-03-18 18:36:48 +00:00
parent c21f1da31c
commit 3f7e239dea
2 changed files with 7 additions and 7 deletions

View File

@ -1,3 +1,7 @@
Wed Mar 18 10:34:51 1998 Nick Clifton <nickc@cygnus.com>
* rdi-share/etherdrv.c: Set sys_errlist[] as char * not const char *.
Fri Mar 13 15:43:53 1998 Peter Schauer (pes@regent.e-technik.tu-muenchen.de)
* config/mips/xm-mips.h (CC_HAS_LONG_LONG): Undefine for Ultrix

View File

@ -80,13 +80,9 @@
#ifndef COMPILING_ON_WINDOWS
/* these two might not work for windows */
extern int sys_nerr;
#ifdef __linux__
extern const char *const sys_errlist[];
#else
extern char *sys_errlist[];
#endif
/* These two might not work for windows. */
extern int sys_nerr;
extern char * sys_errlist[];
#endif
#ifndef UNUSED