Sha256: 32342fff7c05286108a85cc2325efb62ed55f036ad8f5d652d96d00a8932c1b6
Contents?: true
Size: 330 Bytes
Versions: 38
Compression:
Stored size: 330 Bytes
Contents
/* ** Bundled memory allocator. ** Donated to the public domain. */ #ifndef _LJ_ALLOC_H #define _LJ_ALLOC_H #include "lj_def.h" #ifndef LUAJIT_USE_SYSMALLOC LJ_FUNC void *lj_alloc_create(void); LJ_FUNC void lj_alloc_destroy(void *msp); LJ_FUNC void *lj_alloc_f(void *msp, void *ptr, size_t osize, size_t nsize); #endif #endif
Version data entries
38 entries across 38 versions & 1 rubygems