blob: 275211dae6228d9ed7a1361dfba64a7de36a061c [file] [log] [blame]
Imre Kis0619e152024-05-28 16:03:09 +02001/*
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 */
16void *memalign(size_t alignment, size_t size);
17
18#endif /* MEMORY_H */