Mon Mar 2 16:59:15 1998 Jason Molenda (crash@bugshack.cygnus.com)

* rdi-share/etherdrv.c (sys_errlist): Add correct decl for Linux.
This commit is contained in:
Jason Molenda 1998-03-03 01:00:59 +00:00
parent 37ac9ecccd
commit 290d79e0a6
2 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,7 @@
Mon Mar 2 16:59:15 1998 Jason Molenda (crash@bugshack.cygnus.com)
* rdi-share/etherdrv.c (sys_errlist): Add correct decl for Linux.
Mon Mar 2 16:51:44 1998 Jason Molenda (crash@bugshack.cygnus.com)
* Makefile.in (YYFILES): Remove in maintainer-clean, not distclean.

View File

@ -82,8 +82,12 @@
#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
#endif
#ifndef UNUSED
# define UNUSED(x) (x = x) /* Silence compiler warnings */