1
0
mirror of https://github.com/Yours3lf/rpi-vk-driver.git synced 2024-11-29 11:24:14 +01:00
rpi-vk-driver/driver/AlignedAllocator.h
2018-08-26 14:11:43 +01:00

16 lines
206 B
C

#pragma once
#if defined (__cplusplus)
extern "C" {
#endif
#include <stdlib.h>
void* alignedAlloc( unsigned bytes, unsigned alignment );
void alignedFree( void* p );
#if defined (__cplusplus)
}
#endif