* rdi-share/etherdrv.c (sys_errlist): Add correct decl for Linux.
+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.
#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 */