From ed26b790986531f26f058961ca5f4f3d792beec0 Mon Sep 17 00:00:00 2001 From: Nic Barker Date: Fri, 31 Jan 2025 15:51:10 +1300 Subject: [PATCH] swap out malloc.h for stdlib in demo --- examples/shared-layouts/clay-video-demo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/shared-layouts/clay-video-demo.c b/examples/shared-layouts/clay-video-demo.c index 3042893..03df520 100644 --- a/examples/shared-layouts/clay-video-demo.c +++ b/examples/shared-layouts/clay-video-demo.c @@ -1,5 +1,5 @@ #include "../../clay.h" -#include +#include const int FONT_ID_BODY_16 = 0; Clay_Color COLOR_WHITE = { 255, 255, 255, 255};