diff options
author | Masao Uebayashi <uebayasi@cvs.openbsd.org> | 2015-06-01 09:31:41 +0000 |
---|---|---|
committer | Masao Uebayashi <uebayasi@cvs.openbsd.org> | 2015-06-01 09:31:41 +0000 |
commit | c2082a261d7103d29a32659894727522d18380f0 (patch) | |
tree | c97cd84bf2ccdde08ffe9e29983353186e038d4f | |
parent | 1fdeb73e5b7b52a35d59bca8d3c7b5424455a804 (diff) |
Put END() matching _ENTRY() (== ENTRY() w/o prof).
-rw-r--r-- | lib/libc/arch/amd64/sys/cerror.S | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/arch/amd64/sys/cerror.S b/lib/libc/arch/amd64/sys/cerror.S index 3debb1b9bac..89bf7f69aa4 100644 --- a/lib/libc/arch/amd64/sys/cerror.S +++ b/lib/libc/arch/amd64/sys/cerror.S @@ -1,4 +1,4 @@ -/* $OpenBSD: cerror.S,v 1.6 2012/08/22 17:19:34 pascal Exp $ */ +/* $OpenBSD: cerror.S,v 1.7 2015/06/01 09:31:40 uebayasi Exp $ */ /* $NetBSD: cerror.S,v 1.2 2002/06/03 18:30:33 fvdl Exp $ */ /*- @@ -52,3 +52,4 @@ _ENTRY(_CERROR) #endif /* PIC */ movq $-1,%rax ret +END(_CERROR) |