aboutsummaryrefslogtreecommitdiffstats
path: root/include/gos/win32.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/gos/win32.h')
-rw-r--r--include/gos/win32.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/gos/win32.h b/include/gos/win32.h
index fbb45d9b..a8dd6d6f 100644
--- a/include/gos/win32.h
+++ b/include/gos/win32.h
@@ -55,6 +55,7 @@ typedef HANDLE gfxThreadHandle;
#define gfxExit() ExitProcess(0)
#define gfxAlloc(sz) malloc(sz)
+#define gfxRealloc(p,osz,nsz) realloc(p, nsz)
#define gfxFree(ptr) free(ptr)
#define gfxSleepMilliseconds(ms) Sleep(ms)
#define gfxYield() Sleep(0)