summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortb <>2026-05-08 04:01:04 +0000
committertb <>2026-05-08 04:01:04 +0000
commit8128dda0cc057aeb95616d83844412bef16df8a0 (patch)
tree38393955f13235d755ed31039df8c296e908fde0 /src
parent1b757b3ca51ec9acc27a25eaa755ecb44f25dc40 (diff)
downloadopenbsd-8128dda0cc057aeb95616d83844412bef16df8a0.tar.gz
openbsd-8128dda0cc057aeb95616d83844412bef16df8a0.tar.bz2
openbsd-8128dda0cc057aeb95616d83844412bef16df8a0.zip
asr regress: extern three variables to fix build with -fcommon
Diffstat (limited to 'src')
-rw-r--r--src/regress/lib/libc/asr/bin/threads.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/regress/lib/libc/asr/bin/threads.c b/src/regress/lib/libc/asr/bin/threads.c
index f296f1d6f7..3bc0fc250e 100644
--- a/src/regress/lib/libc/asr/bin/threads.c
+++ b/src/regress/lib/libc/asr/bin/threads.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: threads.c,v 1.1.1.1 2012/07/13 17:49:53 eric Exp $ */ 1/* $OpenBSD: threads.c,v 1.2 2026/05/08 04:01:04 tb Exp $ */
2/* 2/*
3 * Copyright (c) 2012 Eric Faurot <eric@openbsd.org> 3 * Copyright (c) 2012 Eric Faurot <eric@openbsd.org>
4 * 4 *
@@ -34,9 +34,9 @@ char **av;
34int loop; 34int loop;
35int nthreads; 35int nthreads;
36 36
37int long_err; 37extern int long_err;
38int gai_errno; 38extern int gai_errno;
39int rrset_errno; 39extern int rrset_errno;
40 40
41void async_resolver_done(void *); 41void async_resolver_done(void *);
42 42