From cc158f2983f55b778215a59d9a370698f0f976d4 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Mon, 5 Oct 2020 14:36:37 -0400 Subject: [PATCH] url: removed "extern" from function declaration. --- src/misc/SDL_url.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/misc/SDL_url.c b/src/misc/SDL_url.c index 13f914fd3..6fcda8fd5 100644 --- a/src/misc/SDL_url.c +++ b/src/misc/SDL_url.c @@ -23,7 +23,7 @@ #include "SDL_misc.h" #include "SDL_error.h" -extern int SDL_SYS_OpenURL(const char *url); +int SDL_SYS_OpenURL(const char *url); int SDL_OpenURL(const char *url)