X-Git-Url: https://code.delx.au/refind/blobdiff_plain/a685467b7efc9a27ea7cf0318d35577b80c63356..430a0cb5b65d028351f2aa71f3bf3d225803d1fb:/libeg/lodepng.h diff --git a/libeg/lodepng.h b/libeg/lodepng.h index 2b2cc89..1d2cd25 100644 --- a/libeg/lodepng.h +++ b/libeg/lodepng.h @@ -46,6 +46,10 @@ int MyStrlen(const char *InString); #else #include "../include/tiano_includes.h" #endif +VOID *MyMemSet(VOID *s, int c, size_t n); +VOID *MyMemCpy(void *__restrict __dest, const void *__restrict __src, size_t __n); +#define memset(s, c, n) MyMemSet(s, c, n) +#define memcpy(d, s, n) MyMemCpy(d, s, n) #ifdef __cplusplus #include