diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2013-01-08 23:06:44 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2013-01-08 23:06:44 +0000 |
commit | 8f786f2e5a0dce9b48656c61d6a9d25b01930482 (patch) | |
tree | 55d77119293f8e10c349d530b307099259213869 | |
parent | 2af3ba1b3b905783817c06c7658a1982a6e4b469 (diff) |
fix __cerror non-weak symbol name
-rw-r--r-- | lib/libc/arch/m88k/sys/cerror.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/arch/m88k/sys/cerror.S b/lib/libc/arch/m88k/sys/cerror.S index eefe97e5100..0356d66722e 100644 --- a/lib/libc/arch/m88k/sys/cerror.S +++ b/lib/libc/arch/m88k/sys/cerror.S @@ -1,4 +1,4 @@ -/* $OpenBSD: cerror.S,v 1.10 2013/01/05 11:20:55 miod Exp $ */ +/* $OpenBSD: cerror.S,v 1.11 2013/01/08 23:06:43 miod Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. @@ -38,7 +38,7 @@ WEAK_ALIAS(__cerror,___cerror) .globl _C_LABEL(errno) -ENTRY(__cerror) +ENTRY(___cerror) or.u %r4,%r0,%hi16(_C_LABEL(errno)) st %r2,%r4,%lo16(_C_LABEL(errno)) sub %r2,%r0,0x1 |