diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2006-04-24 14:28:35 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2006-04-24 14:28:35 +0000 |
commit | 5e7075548fac0778043867b2567677c7223145e8 (patch) | |
tree | 276913c8c4f5db862c2cebf97a9f6cbcf00f8770 /lib | |
parent | 5aa65a41c0cf84e6673b33f9b5eac7989550325d (diff) |
Properly terminate ENTRY with a semicolon, required for asm profiling.
ok miod, espie
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/arch/i386/SYS.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/arch/i386/SYS.h b/lib/libc/arch/i386/SYS.h index 5a8d608db26..a0681730dae 100644 --- a/lib/libc/arch/i386/SYS.h +++ b/lib/libc/arch/i386/SYS.h @@ -29,7 +29,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $OpenBSD: SYS.h,v 1.15 2003/06/02 20:18:30 millert Exp $ + * $OpenBSD: SYS.h,v 1.16 2006/04/24 14:28:34 drahn Exp $ */ #include <machine/asm.h> @@ -47,12 +47,12 @@ #ifdef __STDC__ #define SYSENTRY(x) \ - ENTRY(_thread_sys_ ## x) \ + ENTRY(_thread_sys_ ## x); \ .weak _C_LABEL(x); \ _C_LABEL(x) = _C_LABEL(_thread_sys_ ## x) #else /* ! __STDC__ */ #define SYSENTRY(x) \ - ENTRY(_thread_sys_/**/x) \ + ENTRY(_thread_sys_/**/x); \ .weak _C_LABEL(x); \ _C_LABEL(x) = _C_LABEL(_thread_sys_/**/x) #endif /* ! __STDC__ */ |