mirror of
https://github.com/mkxp-z/mkxp-z.git
synced 2025-08-25 00:03:44 +02:00
10 lines
203 B
C
10 lines
203 B
C
#ifndef MKXPZ_STB_IMAGE_MALLOC_H
|
|
#define MKXPZ_STB_IMAGE_MALLOC_H
|
|
|
|
#include <stdlib.h>
|
|
|
|
#define STBI_MALLOC malloc
|
|
#define STBI_REALLOC realloc
|
|
#define STBI_FREE free
|
|
|
|
#endif // MKXPZ_STB_IMAGE_MALLOC_H
|