blob: dd50afdaae06b73542d019879fc6ca259172103a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#pragma once
/**
Function pointer type for allocation - has same signature as stdlib malloc.
*/
typedef void* (*NvBlastExtAlloc)(size_t size);
extern NvBlastExtAlloc gAlloc;
extern NvBlastLog gLog;
|