From b3a1768824ec4308440e1a0c20b6b81664e5b366 Mon Sep 17 00:00:00 2001 From: Kyle Evans Date: Sun, 29 Mar 2020 02:29:06 +0000 Subject: [PATCH] userboot: mark host_fsops as extern This is already defined elsewhere; mark this declaration extern to the fix the -fno-common build. MFC after: 3 days --- stand/userboot/userboot/libuserboot.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stand/userboot/userboot/libuserboot.h b/stand/userboot/userboot/libuserboot.h index fa60180c6b0..75732c6c0e3 100644 --- a/stand/userboot/userboot/libuserboot.h +++ b/stand/userboot/userboot/libuserboot.h @@ -44,7 +44,7 @@ extern int userboot_disk_maxunit; extern struct devsw host_dev; /* access to host filesystem */ -struct fs_ops host_fsops; +extern struct fs_ops host_fsops; struct bootinfo; struct preloaded_file; -- 2.45.0