1998-01-09 06:15:09 +03:00
|
|
|
/* $NetBSD: _sys_siglist.c,v 1.7 1998/01/09 03:15:26 perry Exp $ */
|
|
|
|
|
1994-12-13 01:41:50 +03:00
|
|
|
/*
|
|
|
|
* Written by J.T. Conklin, December 12, 1994
|
|
|
|
* Public domain.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
|
1995-03-23 22:58:48 +03:00
|
|
|
#ifdef __indr_reference
|
1997-11-05 02:52:05 +03:00
|
|
|
__indr_reference(_sys_siglist, sys_siglist)
|
|
|
|
__indr_reference(_sys_siglist, __sys_siglist) /* Backwards compat with v.12 */
|
1994-12-18 14:32:37 +03:00
|
|
|
#else
|
|
|
|
|
|
|
|
#undef _sys_siglist
|
|
|
|
#undef rcsid
|
|
|
|
#define _sys_siglist sys_siglist
|
|
|
|
#define rcsid _rcsid
|
|
|
|
#include "siglist.c"
|
|
|
|
|
|
|
|
#undef _sys_siglist
|
|
|
|
#undef rcsid
|
|
|
|
#define _sys_siglist __sys_siglist
|
|
|
|
#define rcsid __rcsid
|
|
|
|
#include "siglist.c"
|
|
|
|
|
|
|
|
#endif
|