diff options
| author | Julian Elischer <julian@FreeBSD.org> | 1998-12-19 02:55:34 +0000 |
|---|---|---|
| committer | Julian Elischer <julian@FreeBSD.org> | 1998-12-19 02:55:34 +0000 |
| commit | 6626c6045c38a22c2dc57621a840ae612da0e2e3 (patch) | |
| tree | b5baf90edc2cac8af964657b46d2d820dce40d35 /lib/libc | |
| parent | 02489dd7373f6eb94fc23050f36acaaa2b71167e (diff) | |
Notes
Diffstat (limited to 'lib/libc')
| -rw-r--r-- | lib/libc/i386/sys/sigsuspend.S | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/libc/i386/sys/sigsuspend.S b/lib/libc/i386/sys/sigsuspend.S index 660eabf85411..f85b2e1929f1 100644 --- a/lib/libc/i386/sys/sigsuspend.S +++ b/lib/libc/i386/sys/sigsuspend.S @@ -33,12 +33,12 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $Id: sigsuspend.S,v 1.6 1997/02/22 14:59:40 peter Exp $ */ #if defined(SYSLIBC_RCS) && !defined(lint) .text - .asciz "$Id$" + .asciz "$Id: sigsuspend.S,v 1.6 1997/02/22 14:59:40 peter Exp $" #endif /* SYSLIBC_RCS and not lint */ #include "SYS.h" @@ -50,7 +50,9 @@ err: #ifdef _THREAD_SAFE ENTRY(_thread_sys_sigsuspend) #else -ENTRY(sigsuspend) +ENTRY(_sigsuspend) + .weak CNAME(sigsuspend) ; + .set CNAME(sigsuspend), CNAME(_sigsuspend) ; #endif movl 4(%esp),%eax # fetch mask arg movl (%eax),%eax # indirect to mask arg |
