aboutsummaryrefslogtreecommitdiff
path: root/package/system/iucode-tool/patches/001-iucode_tool-add-missing-limits.h-for-USE_CPUID_DEVIC.patch
blob: ef9e5ab2f8ca3bea73d6575b05c4bee0f252a212 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
From e1137cdafc97c0a8b2a0717a771823f3c4320087 Mon Sep 17 00:00:00 2001
From: Christian Marangi <ansuelsmth@gmail.com>
Date: Tue, 29 Nov 2022 19:37:03 +0100
Subject: [PATCH] iucode_tool: add missing limits.h for USE_CPUID_DEVICE

If USE_CPUID_DEVICE is enabled, compilation fails for missing define.
Add the missing include to fix compilation error with USE_CPUID_DEVICE
define.

Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
---
 iucode_tool.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/iucode_tool.c b/iucode_tool.c
index 4bba5db..0246035 100644
--- a/iucode_tool.c
+++ b/iucode_tool.c
@@ -19,6 +19,7 @@
 #include <stdint.h>
 #include <sys/types.h>
 #include <sys/stat.h>
+#include <limits.h>
 #include <fcntl.h>
 #include <stdio.h>
 #include <stdlib.h>
-- 
2.37.2