svn commit: r359415 - head/stand/userboot/userboot
Kyle Evans
kevans at FreeBSD.org
Sun Mar 29 02:29:15 UTC 2020
Author: kevans
Date: Sun Mar 29 02:29:06 2020
New Revision: 359415
URL: https://svnweb.freebsd.org/changeset/base/359415
Log:
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
Modified:
head/stand/userboot/userboot/libuserboot.h
Modified: head/stand/userboot/userboot/libuserboot.h
==============================================================================
--- head/stand/userboot/userboot/libuserboot.h Sun Mar 29 02:28:15 2020 (r359414)
+++ head/stand/userboot/userboot/libuserboot.h Sun Mar 29 02:29:06 2020 (r359415)
@@ -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;
More information about the svn-src-head
mailing list