From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by gabe.freedesktop.org (Postfix) with ESMTPS id B733810E21F for ; Mon, 24 Apr 2023 07:39:15 +0000 (UTC) From: =?UTF-8?q?Zbigniew=20Kempczy=C5=84ski?= To: igt-dev@lists.freedesktop.org Date: Mon, 24 Apr 2023 09:38:57 +0200 Message-Id: <20230424073907.158701-2-zbigniew.kempczynski@intel.com> In-Reply-To: <20230424073907.158701-1-zbigniew.kempczynski@intel.com> References: <20230424073907.158701-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 v5 01/11] 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