SDL: strings.h isn't available in Windows environments

From 1c2189c7c99ee3e9f36a730f108ee59f5f421fbe Mon Sep 17 00:00:00 2001
From: Sam Lantinga <[EMAIL REDACTED]>
Date: Tue, 25 Feb 2025 08:43:46 -0800
Subject: [PATCH] strings.h isn't available in Windows environments

I believe this header isn't necessary for clang-tidy, string.h has all the functions we care about.

Fixes https://github.com/libsdl-org/SDL/issues/12238
---
 include/SDL3/SDL_stdinc.h | 1 -
 1 file changed, 1 deletion(-)

diff --git a/include/SDL3/SDL_stdinc.h b/include/SDL3/SDL_stdinc.h
index e47b5c89a0b01..9903a0b0f7a86 100644
--- a/include/SDL3/SDL_stdinc.h
+++ b/include/SDL3/SDL_stdinc.h
@@ -5969,7 +5969,6 @@ char *strdup(const char *str);
    their prototype defined (clang-diagnostic-implicit-function-declaration) */
 #include <stdio.h>
 #include <stdlib.h>
-#include <strings.h>
 
 #define SDL_malloc malloc
 #define SDL_calloc calloc