fix(shader.c): include ctype.h, fix compilation error

This commit is contained in:
Swung0x48 2025-01-30 20:21:15 +08:00
parent d0839cec8e
commit 39ef782be4

View File

@ -5,6 +5,7 @@
#include <string.h>
#include <malloc.h>
#include <stdlib.h>
#include <ctype.h>
#include <android/log.h>
#include "shader.h"