Rework indirect reference support as outlined by my recent message to

the tech-userlevel mailing list.
This commit is contained in:
jtc 1994-12-12 22:42:20 +00:00
parent e4db9f8bda
commit 92737ece73
2 changed files with 7 additions and 5 deletions

View File

@ -33,18 +33,19 @@
#if defined(LIBC_SCCS) && !defined(lint)
/*static char *sccsid = "from: @(#)strerror.c 5.6 (Berkeley) 5/4/91";*/
static char *rcsid = "$Id: __strerror.c,v 1.4 1994/11/18 15:38:32 jtc Exp $";
static char *rcsid = "$Id: __strerror.c,v 1.5 1994/12/12 22:42:20 jtc Exp $";
#endif /* LIBC_SCCS and not lint */
#ifdef NLS
#define catclose _catclose
#define catgets _catgets
#define catopen _catopen
#define sys_errlist __sys_errlist
#define sys_nerr __sys_nerr
#include <nl_types.h>
#endif
#define sys_errlist _sys_errlist
#define sys_nerr _sys_nerr
#include <stdio.h>
#include <string.h>

View File

@ -33,17 +33,18 @@
#if defined(LIBC_SCCS) && !defined(lint)
/*static char *sccsid = "from: @(#)strerror.c 5.6 (Berkeley) 5/4/91";*/
static char *rcsid = "$Id: __strsignal.c,v 1.6 1994/11/18 15:38:34 jtc Exp $";
static char *rcsid = "$Id: __strsignal.c,v 1.7 1994/12/12 22:42:22 jtc Exp $";
#endif /* LIBC_SCCS and not lint */
#ifdef NLS
#define catclose _catclose
#define catgets _catgets
#define catopen _catopen
#define sys_siglist __sys_siglist
#include <nl_types.h>
#endif
#define sys_siglist _sys_siglist
#include <signal.h>
#include <string.h>