fix(uuid): add missing #include directives

These include directives were missing from both `uuid.h` files.

Change-Id: I875dfda3e0985728277b72f0e7597dde5cf9d304
Signed-off-by: Chris Kay <chris.kay@arm.com>
This commit is contained in:
Chris Kay 2023-04-13 17:24:20 +01:00
parent 4a24538ae9
commit 12562af369
4 changed files with 11 additions and 5 deletions

View file

@ -1190,6 +1190,9 @@ subsections:
deprecated: deprecated:
- plat/nxp/common/psci - plat/nxp/common/psci
- title: UUID
scope: uuid
- title: Documentation - title: Documentation
scope: docs scope: docs
@ -1278,4 +1281,3 @@ subsections:
- title: zlib - title: zlib
scope: zlib scope: zlib

View file

@ -1,12 +1,11 @@
/* /*
* 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 * SPDX-License-Identifier: BSD-3-Clause
*/ */
#include <assert.h> #include <assert.h>
#include <errno.h> #include <errno.h>
#include <stdint.h>
#include <string.h> #include <string.h>
#include <common/debug.h> #include <common/debug.h>

View file

@ -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 * SPDX-License-Identifier: BSD-3-Clause
*/ */
@ -7,6 +7,9 @@
#ifndef UUID_COMMON_H #ifndef UUID_COMMON_H
#define UUID_COMMON_H #define UUID_COMMON_H
#include <stdbool.h>
#include <stdint.h>
#define UUID_BYTES_LENGTH 16 #define UUID_BYTES_LENGTH 16
#define UUID_STRING_LENGTH 36 #define UUID_STRING_LENGTH 36

View file

@ -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. * All rights reserved.
*/ */
#ifndef UUID_H #ifndef UUID_H
#define UUID_H #define UUID_H
#include <stdint.h>
/* Length of a node address (an IEEE 802 address). */ /* Length of a node address (an IEEE 802 address). */
#define _UUID_NODE_LEN 6 #define _UUID_NODE_LEN 6