NuSiF-Solver/BasicSolver/3D-mpi-io/src/allocate.h

14 lines
328 B
C
Raw Normal View History

2023-02-05 08:02:01 +01:00
/*
* Copyright (C) 2022 NHR@FAU, University Erlangen-Nuremberg.
* 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 08:02:01 +01:00
#endif