1994-12-13 01:41:50 +03:00
|
|
|
/*
|
|
|
|
* Written by J.T. Conklin, December 12, 1994
|
|
|
|
* Public domain.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
|
1994-12-18 14:32:37 +03:00
|
|
|
#ifdef __weak_reference
|
1994-12-17 19:18:10 +03:00
|
|
|
__weak_reference(_sys_siglist, sys_siglist);
|
1994-12-17 19:27:03 +03:00
|
|
|
__weak_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
|