diff options
author | 2000-01-06 08:49:46 +0000 | |
---|---|---|
committer | 2000-01-06 08:49:46 +0000 | |
commit | c88ba6e6b05f212ad9145491c18417eb398e50fa (patch) | |
tree | ed6d9eb2a8351fe044cf16298c017f1da26f2915 /lib | |
parent | include thread/Makefile.inc (diff) | |
download | wireguard-openbsd-c88ba6e6b05f212ad9145491c18417eb398e50fa.tar.xz wireguard-openbsd-c88ba6e6b05f212ad9145491c18417eb398e50fa.zip |
use _C_LABEL macro
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/arch/i386/sys/sigreturn.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/arch/i386/sys/sigreturn.S b/lib/libc/arch/i386/sys/sigreturn.S index a4899d3d63f..82a5ec68907 100644 --- a/lib/libc/arch/i386/sys/sigreturn.S +++ b/lib/libc/arch/i386/sys/sigreturn.S @@ -38,7 +38,7 @@ #if defined(SYSLIBC_SCCS) .text - .asciz "$OpenBSD: sigreturn.S,v 1.2 1996/08/19 08:13:42 tholo Exp $" + .asciz "$OpenBSD: sigreturn.S,v 1.3 2000/01/06 08:49:46 d Exp $" #endif /* SYSLIBC_SCCS */ /* @@ -47,7 +47,7 @@ #ifdef PROF #undef ENTRY #define ENTRY(x) \ - .globl _/**/x; .align 2; _/**/x: pusha ; \ + .globl _C_LABEL(x); .align 2; _C_LABEL(x): pusha ; \ .data; 1:; .long 0; .text; movl $1b,%eax; call mcount; popa ; nop #endif /* PROF */ |