diff options
author | Visa Hankala <visa@cvs.openbsd.org> | 2021-05-30 15:05:34 +0000 |
---|---|---|
committer | Visa Hankala <visa@cvs.openbsd.org> | 2021-05-30 15:05:34 +0000 |
commit | acd3045cb4ee1d274ba2f281aa2505883cdada54 (patch) | |
tree | 6a34bdfbec94b4702d9bbdc5a4023c570dd1ffba /sys/arch/mips64 | |
parent | b071aa08f9040a4e595c61d8e7a53b0980ac3ef2 (diff) |
Include <sys/mutex.h> to avoid a hidden header dependency.
OK jsg@ deraadt@
Diffstat (limited to 'sys/arch/mips64')
-rw-r--r-- | sys/arch/mips64/mips64/db_machdep.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/mips64/mips64/db_machdep.c b/sys/arch/mips64/mips64/db_machdep.c index 877cc1c9999..bbdf2462b57 100644 --- a/sys/arch/mips64/mips64/db_machdep.c +++ b/sys/arch/mips64/mips64/db_machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: db_machdep.c,v 1.56 2021/05/01 16:11:11 visa Exp $ */ +/* $OpenBSD: db_machdep.c,v 1.57 2021/05/30 15:05:32 visa Exp $ */ /* * Copyright (c) 1998-2003 Opsycon AB (www.opsycon.se) @@ -28,6 +28,7 @@ #include <sys/param.h> #include <sys/systm.h> +#include <sys/mutex.h> #include <sys/proc.h> #include <dev/cons.h> |