sdl2-compat: add missing SDLCALL to SDL_Write{LE|BE}{16|32|64} .

From ab194f4afce517f45880634d52390ece8cb0def0 Mon Sep 17 00:00:00 2001
From: Ozkan Sezer <[EMAIL REDACTED]>
Date: Fri, 30 Dec 2022 00:40:28 +0300
Subject: [PATCH] add missing SDLCALL to SDL_Write{LE|BE}{16|32|64} .

---
 src/sdl2_compat.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/sdl2_compat.c b/src/sdl2_compat.c
index d52a5c9..0868bb0 100644
--- a/src/sdl2_compat.c
+++ b/src/sdl2_compat.c
@@ -1603,7 +1603,7 @@ DECLSPEC size_t SDLCALL SDL_WriteU8(SDL2_RWops *rwops2, Uint8 x) { return SDL_RW
 
 #define DORWOPSENDIAN(order, bits) \
     DECLSPEC Uint##bits SDLCALL SDL_Read##order##bits(SDL2_RWops *rwops2) { Uint##bits x = 0; SDL_RWread(rwops2, &x, sizeof (x), 1); return SDL_Swap##order##bits(x); } \
-    DECLSPEC size_t SDL_Write##order##bits(SDL2_RWops *rwops2, Uint##bits x) { x = SDL_Swap##order##bits(x); return SDL_RWwrite(rwops2, &x, sizeof(x), 1); }
+    DECLSPEC size_t SDLCALL SDL_Write##order##bits(SDL2_RWops *rwops2, Uint##bits x) { x = SDL_Swap##order##bits(x); return SDL_RWwrite(rwops2, &x, sizeof(x), 1); }
 DORWOPSENDIAN(LE, 16)
 DORWOPSENDIAN(BE, 16)
 DORWOPSENDIAN(LE, 32)