summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorManish Pandey <manish.pandey2@arm.com>2023-04-21 14:24:12 +0200
committerTrustedFirmware Code Review <review@review.trustedfirmware.org>2023-04-21 14:24:12 +0200
commitedee0430d42c92cdb5119f950aee506012b327a6 (patch)
tree10606e907ca1a46a1ecdce45e6d9d77f7ca84f9f /include
parente7df41b545a72c7b4190e9ca2b4868dbc2ddcd79 (diff)
parent12562af369e897c67aa45bfeb97cd7bb5d500cf6 (diff)
downloadarm-trusted-firmware-edee0430d42c92cdb5119f950aee506012b327a6.tar.gz
Merge "fix(uuid): add missing `#include` directives" into integration
Diffstat (limited to 'include')
-rw-r--r--include/common/uuid.h5
-rw-r--r--include/tools_share/uuid.h4
2 files changed, 7 insertions, 2 deletions
diff --git a/include/common/uuid.h b/include/common/uuid.h
index c8dd68197..634880449 100644
--- a/include/common/uuid.h
+++ b/include/common/uuid.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2021-2022, Arm Limited and Contributors. All rights reserved.
+ * Copyright (c) 2021-2023, Arm Limited and Contributors. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
@@ -7,6 +7,9 @@
#ifndef UUID_COMMON_H
#define UUID_COMMON_H
+#include <stdbool.h>
+#include <stdint.h>
+
#define UUID_BYTES_LENGTH 16
#define UUID_STRING_LENGTH 36
diff --git a/include/tools_share/uuid.h b/include/tools_share/uuid.h
index 2ced3a3fa..3445f2026 100644
--- a/include/tools_share/uuid.h
+++ b/include/tools_share/uuid.h
@@ -27,13 +27,15 @@
*/
/*
- * Portions copyright (c) 2014-2020, ARM Limited and Contributors.
+ * Portions copyright (c) 2014-2023, Arm Limited and Contributors.
* All rights reserved.
*/
#ifndef UUID_H
#define UUID_H
+#include <stdint.h>
+
/* Length of a node address (an IEEE 802 address). */
#define _UUID_NODE_LEN 6