From 7bfb33a35f46adbebfe65bbefb98ee662854e63b Mon Sep 17 00:00:00 2001 From: deraadt Date: Wed, 27 Jan 2021 07:21:12 +0000 Subject: [PATCH] split out extern and decl for -fno-common --- usr.sbin/vmctl/vmctl.c | 4 +++- usr.sbin/vmctl/vmctl.h | 4 ++-- 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 @@ -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 @@ -71,7 +71,7 @@ struct ctl_command { int has_pledge; }; -struct imsgbuf *ibuf; +extern struct imsgbuf *ibuf; /* main.c */ int vmmaction(struct parse_result *); -- 2.20.1