[PATCH v1 03/13] libperf xyarray: Use correct stddef.h include

From: Ian Rogers
Date: Sat Mar 09 2024 - 21:06:54 EST


sys/types.h may not define both NULL and size_t used in this
file. Change the dependency to the correct stddef.h one.

Signed-off-by: Ian Rogers <irogers@xxxxxxxxxx>
---
tools/lib/perf/include/internal/xyarray.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/lib/perf/include/internal/xyarray.h b/tools/lib/perf/include/internal/xyarray.h
index f10af3da7b21..947804fb8c85 100644
--- a/tools/lib/perf/include/internal/xyarray.h
+++ b/tools/lib/perf/include/internal/xyarray.h
@@ -3,7 +3,7 @@
#define __LIBPERF_INTERNAL_XYARRAY_H

#include <linux/compiler.h>
-#include <sys/types.h>
+#include <stddef.h>

struct xyarray {
size_t row_size;
--
2.44.0.278.ge034bb2e1d-goog