mirror of
https://codeberg.org/ACM/TinyGL-C89.git
synced 2025-08-17 05:03:32 -04:00
23 lines
300 B
C
23 lines
300 B
C
/*
|
|
* Memory allocator for TinyGL
|
|
*/
|
|
#include "zgl.h"
|
|
|
|
/* modify these functions so that they suit your needs */
|
|
|
|
void gl_free(void *p)
|
|
{
|
|
free(p);
|
|
}
|
|
|
|
void *gl_malloc(int size)
|
|
{
|
|
return malloc(size);
|
|
}
|
|
|
|
void *gl_zalloc(int size)
|
|
{
|
|
return calloc(1, size);
|
|
}
|
|
|
|
/* --- end of MEMORY_C --- */
|