summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2021-01-27 07:21:12 +0000
committerderaadt <deraadt@openbsd.org>2021-01-27 07:21:12 +0000
commit7bfb33a35f46adbebfe65bbefb98ee662854e63b (patch)
treebc344e260993a0a5a2182489b24e0813a43f38ef
parentmakemap does not need a common which it does not use. (diff)
downloadwireguard-openbsd-7bfb33a35f46adbebfe65bbefb98ee662854e63b.tar.xz
wireguard-openbsd-7bfb33a35f46adbebfe65bbefb98ee662854e63b.zip
split out extern and decl for -fno-common
-rw-r--r--usr.sbin/vmctl/vmctl.c4
-rw-r--r--usr.sbin/vmctl/vmctl.h4
2 files changed, 5 insertions, 3 deletions
diff --git a/usr.sbin/vmctl/vmctl.c b/usr.sbin/vmctl/vmctl.c
index 1e99f13508d..d8edbc062eb 100644
--- a/usr.sbin/vmctl/vmctl.c
+++ b/usr.sbin/vmctl/vmctl.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: vmctl.c,v 1.75 2020/09/02 19:57:33 tb Exp $ */
+/* $OpenBSD: vmctl.c,v 1.76 2021/01/27 07:21:12 deraadt Exp $ */
/*
* Copyright (c) 2014 Mike Larkin <mlarkin@openbsd.org>
@@ -49,6 +49,8 @@ char info_name[VMM_MAX_NAME_LEN];
enum actions info_action;
unsigned int info_flags;
+struct imsgbuf *ibuf;
+
/*
* vm_start
*
diff --git a/usr.sbin/vmctl/vmctl.h b/usr.sbin/vmctl/vmctl.h
index beb65eae6d8..4fd2b787deb 100644
--- a/usr.sbin/vmctl/vmctl.h
+++ b/usr.sbin/vmctl/vmctl.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: vmctl.h,v 1.33 2019/12/17 09:43:00 kn Exp $ */
+/* $OpenBSD: vmctl.h,v 1.34 2021/01/27 07:21:12 deraadt Exp $ */
/*
* Copyright (c) 2015 Reyk Floeter <reyk@openbsd.org>
@@ -71,7 +71,7 @@ struct ctl_command {
int has_pledge;
};
-struct imsgbuf *ibuf;
+extern struct imsgbuf *ibuf;
/* main.c */
int vmmaction(struct parse_result *);