Use macros for the dummy definitions of sys_errlist/sys_errno

This commit is contained in:
Hallvard Furuseth 1999-04-06 01:25:03 +00:00
parent a66f4db90b
commit e78f4140d7

View file

@ -20,8 +20,8 @@
#ifdef DECL_SYS_ERRLIST
#ifndef HAVE_SYS_ERRLIST
int sys_nerr;
char **sys_errlist;
#define sys_nerr 0
#define sys_errlist ((char **)0)
#else
extern int sys_nerr;
extern char *sys_errlist[];