mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 10:12:06 +00:00
15 lines
217 B
C
15 lines
217 B
C
#ifndef EXTERN_REALLOCARRAY_H
|
|
#define EXTERN_REALLOCARRAY_H
|
|
|
|
#ifdef REALLOCARRAY_IN_LIBC
|
|
#include <stdlib.h>
|
|
#else
|
|
|
|
#define reallocarray rgbds_reallocarray
|
|
|
|
void *reallocarray(void *, size_t, size_t);
|
|
|
|
#endif
|
|
|
|
#endif
|