NuSiF-Solver/PoissonSolver/2D-seq/src/allocate.h
2023-02-05 07:34:23 +01:00

14 lines
326 B
C

/*
* 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 (int alignment, size_t bytesize);
#endif