From 0f83811158e8bc0ac4a9ab5808abecfb2ad6c0e6 Mon Sep 17 00:00:00 2001 From: Warner Losh Date: Thu, 30 Nov 2023 18:18:59 -0700 Subject: [PATCH] cam: Make cam.h self-contained for userland We reference FILE * here, but don't include stdio.h. Do so (both of these are in !_KERNEL blocks). Sponsored by: Netflix --- sys/cam/cam.h | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/cam/cam.h b/sys/cam/cam.h index 692f515aa1aa..963c9798ddbc 100644 --- a/sys/cam/cam.h +++ b/sys/cam/cam.h @@ -37,6 +37,7 @@ #ifndef _KERNEL #include +#include #endif typedef u_int path_id_t;