From 757fc6666b876bb4cdbbc6fab735faa228d15489 Mon Sep 17 00:00:00 2001 From: Warner Losh Date: Sat, 15 Apr 2023 18:25:00 -0600 Subject: [PATCH] cam: Include stdbool.h for userland Sponsored by: Netflix --- sys/cam/cam.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sys/cam/cam.h b/sys/cam/cam.h index 6bec8b46f417..721ab6b7d865 100644 --- a/sys/cam/cam.h +++ b/sys/cam/cam.h @@ -38,6 +38,9 @@ #endif #include +#ifndef _KERNEL +#include +#endif typedef u_int path_id_t; typedef u_int target_id_t;