From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by gabe.freedesktop.org (Postfix) with ESMTPS id 765A010EC57 for ; Fri, 28 Apr 2023 06:22:33 +0000 (UTC) From: =?UTF-8?q?Zbigniew=20Kempczy=C5=84ski?= To: igt-dev@lists.freedesktop.org Date: Fri, 28 Apr 2023 08:22:08 +0200 Message-Id: <20230428062224.21322-2-zbigniew.kempczynski@intel.com> In-Reply-To: <20230428062224.21322-1-zbigniew.kempczynski@intel.com> References: <20230428062224.21322-1-zbigniew.kempczynski@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [igt-dev] [PATCH i-g-t v8 01/17] lib/xe_ioctl: Add missing header for direct resolving List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: igt-dev-bounces@lists.freedesktop.org Sender: "igt-dev" List-ID: xe_ioctl.h user expects all types resolving. Add missing stddef.h header which contains size_t definition. Signed-off-by: Zbigniew KempczyƄski Reviewed-by: Kamil Konieczny --- lib/xe/xe_ioctl.h | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/xe/xe_ioctl.h b/lib/xe/xe_ioctl.h index d8c40eda01..049cd183d6 100644 --- a/lib/xe/xe_ioctl.h +++ b/lib/xe/xe_ioctl.h @@ -11,6 +11,7 @@ #ifndef XE_IOCTL_H #define XE_IOCTL_H +#include #include #include -- 2.34.1