SDL_net: Put split-up function declaration all on one line.

From 0828c0bffe50b2b56a80d19daa2d95c3c45d19c8 Mon Sep 17 00:00:00 2001
From: "Ryan C. Gordon" <[EMAIL REDACTED]>
Date: Fri, 17 Jun 2022 16:10:30 -0400
Subject: [PATCH] Put split-up function declaration all on one line.

---
 SDL_net.h | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/SDL_net.h b/SDL_net.h
index e657682..e66edfb 100644
--- a/SDL_net.h
+++ b/SDL_net.h
@@ -262,8 +262,7 @@ extern DECLSPEC IPaddress * SDLCALL SDLNet_TCP_GetPeerAddress(TCPsocket sock);
  *
  * \sa SDLNet_TCP_Recv
  */
-extern DECLSPEC int SDLCALL SDLNet_TCP_Send(TCPsocket sock, const void *data,
-        int len);
+extern DECLSPEC int SDLCALL SDLNet_TCP_Send(TCPsocket sock, const void *data, int len);
 
 /**
  * Receive data from a non-server socket.