diff options
Diffstat (limited to 'core/fxcrt/fx_memory.h')
-rw-r--r-- | core/fxcrt/fx_memory.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/fxcrt/fx_memory.h b/core/fxcrt/fx_memory.h index f89095ad9c..ecf3e42655 100644 --- a/core/fxcrt/fx_memory.h +++ b/core/fxcrt/fx_memory.h @@ -14,10 +14,10 @@ extern "C" { #endif // For external C libraries to malloc through PDFium. These may return nullptr. -void* FXMEM_DefaultAlloc(size_t byte_size, int flags); +void* FXMEM_DefaultAlloc(size_t byte_size); void* FXMEM_DefaultCalloc(size_t num_elems, size_t byte_size); -void* FXMEM_DefaultRealloc(void* pointer, size_t new_size, int flags); -void FXMEM_DefaultFree(void* pointer, int flags); +void* FXMEM_DefaultRealloc(void* pointer, size_t new_size); +void FXMEM_DefaultFree(void* pointer); #ifdef __cplusplus } // extern "C" |