Put the right number of leading underscores in ___cerror and __cerror, for
authormiod <miod@openbsd.org>
Tue, 12 May 2015 04:22:01 +0000 (04:22 +0000)
committermiod <miod@openbsd.org>
Tue, 12 May 2015 04:22:01 +0000 (04:22 +0000)
the sake of libpthread. Probably missed during the a.out->ELF switch, I
can't believe this went unnoticed for so long.

lib/libc/arch/vax/sys/cerror.S
lib/librthread/arch/vax/cerror.S

index e838aec..d56f787 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: cerror.S,v 1.10 2013/07/05 21:10:50 miod Exp $ */
+/*     $OpenBSD: cerror.S,v 1.11 2015/05/12 04:22:01 miod Exp $ */
 /*
  * Copyright (c) 1983, 1993
  *     The Regents of the University of California.  All rights reserved.
@@ -33,7 +33,8 @@
 WEAK_ALIAS(__cerror,___cerror)
 
        .globl  _C_LABEL(errno)
-_C_LABEL(__cerror):
+       .globl  _C_LABEL(___cerror)
+_C_LABEL(___cerror):
        movl    %r0,_C_LABEL(errno)
        mnegl   $1,%r0
        mnegl   $1,%r1
index e860dad..1414b02 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: cerror.S,v 1.2 2013/07/05 21:10:50 miod Exp $ */
+/*     $OpenBSD: cerror.S,v 1.3 2015/05/12 04:22:01 miod Exp $ */
 /*
  * Copyright (c) 1983, 1993
  *     The Regents of the University of California.  All rights reserved.
@@ -31,7 +31,8 @@
 #include "SYS.h"
 
        .globl  _C_LABEL(__errno)
-_C_LABEL(_cerror):
+       .globl  _C_LABEL(__cerror)
+_C_LABEL(__cerror):
        pushl   %r0
        calls   $0, _C_LABEL(__errno)
        movl    (%sp)+, (%r0)