diff options
author | David Leonard <d@cvs.openbsd.org> | 2000-01-06 08:49:47 +0000 |
---|---|---|
committer | David Leonard <d@cvs.openbsd.org> | 2000-01-06 08:49:47 +0000 |
commit | 407801c8a4b2c59bea54ff5d9acb04153b8ac17a (patch) | |
tree | 456d53b943cad16064d37a6edf968e9cf86c1d44 /lib | |
parent | b626be8ef47b76f23e1df755a098fe5c8dc5c106 (diff) |
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 */ |