From 39ef782be4d1390a277949066f47b4a4439be21e Mon Sep 17 00:00:00 2001 From: Swung0x48 Date: Thu, 30 Jan 2025 20:21:15 +0800 Subject: [PATCH] fix(shader.c): include ctype.h, fix compilation error --- src/main/cpp/gl/shader.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/cpp/gl/shader.c b/src/main/cpp/gl/shader.c index bcc2427..6a18337 100644 --- a/src/main/cpp/gl/shader.c +++ b/src/main/cpp/gl/shader.c @@ -5,6 +5,7 @@ #include #include #include +#include #include #include "shader.h"