diff options
author | 2015-05-12 04:22:01 +0000 | |
---|---|---|
committer | 2015-05-12 04:22:01 +0000 | |
commit | fe4a9006a773b909c3358dbcb2259faac4599e4a (patch) | |
tree | 3ea5f0e4da7763c4f61f0121400aad62b3b60067 /lib/libc | |
parent | Move the logit() prototype so parse.y will see it. (diff) | |
download | wireguard-openbsd-fe4a9006a773b909c3358dbcb2259faac4599e4a.tar.xz wireguard-openbsd-fe4a9006a773b909c3358dbcb2259faac4599e4a.zip |
Put the right number of leading underscores in ___cerror and __cerror, for
the sake of libpthread. Probably missed during the a.out->ELF switch, I
can't believe this went unnoticed for so long.
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/arch/vax/sys/cerror.S | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libc/arch/vax/sys/cerror.S b/lib/libc/arch/vax/sys/cerror.S index e838aec2b0c..d56f787afc1 100644 --- a/lib/libc/arch/vax/sys/cerror.S +++ b/lib/libc/arch/vax/sys/cerror.S @@ -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 |