1 /*
2  * Arm SCP/MCP Software
3  * Copyright (c) 2020-2021, Arm Limited and Contributors. All rights reserved.
4  *
5  * SPDX-License-Identifier: BSD-3-Clause
6  */
7 
8 #ifndef STDLIB_H
9 #define STDLIB_H
10 
11 #include <fwk_attributes.h>
12 
13 #include_next <stdlib.h>
14 
15 #ifdef __ARMCC_VERSION
16 void *aligned_alloc(size_t alignment, size_t size) FWK_LEAF
17     FWK_NOTHROW FWK_ALLOC FWK_ALLOC_ALIGN(1) FWK_ALLOC_SIZE1(2) FWK_WARN_UNUSED;
18 #endif
19 
20 #endif /* STDLIB_H */
21