Need an internal name for signal().

This commit is contained in:
kleink 1998-10-16 12:47:45 +00:00
parent 73ef151b8c
commit 796b7ae4bf
2 changed files with 8 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: signal.c,v 1.9 1997/07/21 14:07:33 jtc Exp $ */
/* $NetBSD: signal.c,v 1.10 1998/10/16 12:47:45 kleink Exp $ */
/*
* Copyright (c) 1985, 1989, 1993
@ -38,7 +38,7 @@
#if 0
static char sccsid[] = "@(#)signal.c 8.1 (Berkeley) 6/4/93";
#else
__RCSID("$NetBSD: signal.c,v 1.9 1997/07/21 14:07:33 jtc Exp $");
__RCSID("$NetBSD: signal.c,v 1.10 1998/10/16 12:47:45 kleink Exp $");
#endif
#endif /* LIBC_SCCS and not lint */
@ -48,6 +48,10 @@ __RCSID("$NetBSD: signal.c,v 1.9 1997/07/21 14:07:33 jtc Exp $");
#include "namespace.h"
#include <signal.h>
#ifdef __weak_alias
__weak_alias(signal,_signal);
#endif
sigset_t __sigintr; /* shared with siginterrupt */
sig_t

View File

@ -1,4 +1,4 @@
/* $NetBSD: namespace.h,v 1.25 1998/10/16 12:39:54 kleink Exp $ */
/* $NetBSD: namespace.h,v 1.26 1998/10/16 12:47:45 kleink Exp $ */
/*-
* Copyright (c) 1997, 1998 The NetBSD Foundation, Inc.
@ -297,6 +297,7 @@
#define shm_open _shm_open
#define shm_unlink _shm_unlink
#define siginterrupt _siginterrupt
#define signal _signal
#define sl_add _sl_add
#define sl_find _sl_find
#define sl_free _sl_free