NuSiF-Solver/BasicSolver/2D-seq/src/allocate.h

14 lines
324 B
C
Raw Normal View History

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>
extern void* allocate(size_t alignment, size_t bytesize);
2023-02-05 07:34:23 +01:00
#endif