diff options
author | Masao Uebayashi <uebayasi@cvs.openbsd.org> | 2015-06-12 09:26:06 +0000 |
---|---|---|
committer | Masao Uebayashi <uebayasi@cvs.openbsd.org> | 2015-06-12 09:26:06 +0000 |
commit | 4973521c345f79b783299822fca9ac949bebb342 (patch) | |
tree | d100a60f6d3f0ccf8c80036eed26ace4b52fd508 | |
parent | 89131ccae880100f6a953c9434f55c80fc02ae09 (diff) |
Reuse SYSENTRY_HIDDEN() in SYSENTRY(); no functional changes.
-rw-r--r-- | lib/libc/arch/amd64/SYS.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/arch/amd64/SYS.h b/lib/libc/arch/amd64/SYS.h index 82eedd460fc..8b5f50f1838 100644 --- a/lib/libc/arch/amd64/SYS.h +++ b/lib/libc/arch/amd64/SYS.h @@ -1,4 +1,4 @@ -/* $OpenBSD: SYS.h,v 1.10 2015/04/07 01:27:06 guenther Exp $ */ +/* $OpenBSD: SYS.h,v 1.11 2015/06/12 09:26:05 uebayasi Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. @@ -42,7 +42,7 @@ #define SYSTRAP(x) movl $(SYS_ ## x),%eax; movq %rcx, %r10; syscall #define SYSENTRY(x) \ - ENTRY(_thread_sys_ ## x); \ + SYSENTRY_HIDDEN(x); \ .weak _C_LABEL(x); \ _C_LABEL(x) = _C_LABEL(_thread_sys_ ## x) #define SYSENTRY_HIDDEN(x) \ |