Module Name: src Committed By: mrg Date: Sat Jul 20 20:59:05 UTC 2019
Modified Files: src/sys/sys: compat_stub.h Log Message: add missing 'struct reg;' forward decl. To generate a diff of this commit: cvs rdiff -u -r1.17 -r1.18 src/sys/sys/compat_stub.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/sys/compat_stub.h diff -u src/sys/sys/compat_stub.h:1.17 src/sys/sys/compat_stub.h:1.18 --- src/sys/sys/compat_stub.h:1.17 Sat Jul 20 18:23:05 2019 +++ src/sys/sys/compat_stub.h Sat Jul 20 20:59:05 2019 @@ -1,4 +1,4 @@ -/* $NetBSD: compat_stub.h,v 1.17 2019/07/20 18:23:05 christos Exp $ */ +/* $NetBSD: compat_stub.h,v 1.18 2019/07/20 20:59:05 mrg Exp $ */ /*- * Copyright (c) 2018 The NetBSD Foundation, Inc. @@ -353,6 +353,7 @@ MODULE_HOOK(ifmedia_80_post_hook, int, ( * the main kernel, and not in a compat_netbsd32 module. (In particular, * this is true for i386 and sgimips.) */ +struct reg; MODULE_HOOK(netbsd32_machine32_hook, const char *, (void)); MODULE_HOOK(netbsd32_reg_validate_hook, int, (struct lwp *, const struct reg *));