From 34c60113607f668e0e7185ab821a85a9170dd935 Mon Sep 17 00:00:00 2001
From: Sam Lantinga <[EMAIL REDACTED]>
Date: Wed, 18 Sep 2024 14:55:51 -0700
Subject: [PATCH] Fixed Windows build
---
src/file/SDL_iostream.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/file/SDL_iostream.c b/src/file/SDL_iostream.c
index 950120c8747f9..50f22dc3c6689 100644
--- a/src/file/SDL_iostream.c
+++ b/src/file/SDL_iostream.c
@@ -20,8 +20,6 @@
*/
#include "SDL_internal.h"
-#include "SDL_iostream_c.h"
-
#if defined(SDL_PLATFORM_WINDOWS)
#include "../core/windows/SDL_windows.h"
#endif
@@ -35,6 +33,8 @@
#include <limits.h>
#endif
+#include "SDL_iostream_c.h"
+
/* This file provides a general interface for SDL to read and write
data sources. It can easily be extended to files, memory, etc.
*/