From 3374e57102a1de63ca2fc56953ec674e06f1dfbc Mon Sep 17 00:00:00 2001 From: Anonymous Maarten Date: Thu, 25 Jul 2024 11:45:50 +0200 Subject: [PATCH] stdinc: strcasecmp is declared in strings.h --- include/SDL3/SDL_stdinc.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/SDL3/SDL_stdinc.h b/include/SDL3/SDL_stdinc.h index 83296b257b..96cc643a26 100644 --- a/include/SDL3/SDL_stdinc.h +++ b/include/SDL3/SDL_stdinc.h @@ -2963,8 +2963,9 @@ size_t wcslcat(wchar_t *dst, const wchar_t *src, size_t size); /* Starting LLVM 16, the analyser errors out if these functions do not have their prototype defined (clang-diagnostic-implicit-function-declaration) */ -#include #include +#include +#include #define SDL_malloc malloc #define SDL_calloc calloc