2023-02-05 07:34:23 +01:00
|
|
|
/*
|
2024-02-05 08:46:13 +01:00
|
|
|
* Copyright (C) NHR@FAU, University Erlangen-Nuremberg.
|
2023-02-05 07:34:23 +01:00
|
|
|
* All rights reserved.
|
|
|
|
* Use of this source code is governed by a MIT-style
|
|
|
|
* license that can be found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
#ifndef __ALLOCATE_H_
|
|
|
|
#define __ALLOCATE_H_
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2024-02-18 21:43:06 +01:00
|
|
|
extern void* allocate(size_t alignment, size_t bytesize);
|
2023-02-05 07:34:23 +01:00
|
|
|
|
|
|
|
#endif
|