summaryrefslogtreecommitdiff
path: root/src/include/uuid.h
diff options
context:
space:
mode:
authorRaul E Rangel <rrangel@chromium.org>2020-05-27 20:40:59 -0600
committerFelix Held <felix-coreboot@felixheld.de>2020-05-28 16:20:40 +0000
commit3b8284f37a20ce47d89f37bb22d1f312da4f40eb (patch)
tree78ad1edd7b3e90a95d1305e25c6590d7966b6115 /src/include/uuid.h
parent7f21ad0cba0d45fdd4cd1059780345ec055b5a35 (diff)
downloadcoreboot-3b8284f37a20ce47d89f37bb22d1f312da4f40eb.tar.xz
include/uuid.h: Add missing include
uuid.h uses uint8_t which is provided by stdint.h. BUG=b:153675915 TEST=Fixed my compiler error. Signed-off-by: Raul E Rangel <rrangel@chromium.org> Change-Id: Idbec40f444d9df7587b9066faac65499415dae6e Reviewed-on: https://review.coreboot.org/c/coreboot/+/41803 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Aaron Durbin <adurbin@chromium.org> Reviewed-by: Felix Held <felix-coreboot@felixheld.de> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Furquan Shaikh <furquan@google.com>
Diffstat (limited to 'src/include/uuid.h')
-rw-r--r--src/include/uuid.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/uuid.h b/src/include/uuid.h
index f6e3450558..c38b0fe469 100644
--- a/src/include/uuid.h
+++ b/src/include/uuid.h
@@ -4,6 +4,7 @@
#define _UUID_H_
#include <string.h>
+#include <stdint.h>
#define UUID_LEN 16
#define UUID_STRLEN 36