From: deraadt Date: Wed, 27 Jan 2021 07:21:12 +0000 (+0000) Subject: split out extern and decl for -fno-common X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=7bfb33a35f46adbebfe65bbefb98ee662854e63b;p=openbsd split out extern and decl for -fno-common --- 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 *);