Imre Kis | 0619e15 | 2024-05-28 16:03:09 +0200 | [diff] [blame] | 1 | /* |
2 | * Copyright (c) 2024, Arm Limited and Contributors. All rights reserved. | ||||
3 | * | ||||
4 | * SPDX-License-Identifier: BSD-3-Clause | ||||
5 | */ | ||||
6 | |||||
7 | #ifndef MEMORY_H | ||||
8 | #define MEMORY_H | ||||
9 | |||||
10 | #include <stddef.h> | ||||
11 | |||||
12 | /* | ||||
13 | * The declaration of this function is part of libc but it is implemented in | ||||
14 | * the allocator. | ||||
15 | */ | ||||
16 | void *memalign(size_t alignment, size_t size); | ||||
17 | |||||
18 | #endif /* MEMORY_H */ |