swap out malloc.h for stdlib in demo

This commit is contained in:
Nic Barker 2025-01-31 15:51:10 +13:00
parent 33b150e515
commit ed26b79098

View File

@ -1,5 +1,5 @@
#include "../../clay.h" #include "../../clay.h"
#include <malloc/malloc.h> #include <stdlib.h>
const int FONT_ID_BODY_16 = 0; const int FONT_ID_BODY_16 = 0;
Clay_Color COLOR_WHITE = { 255, 255, 255, 255}; Clay_Color COLOR_WHITE = { 255, 255, 255, 255};