mirror of
https://github.com/Yours3lf/rpi-vk-driver.git
synced 2024-11-29 11:24:14 +01:00
16 lines
206 B
C
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
|
|
|