Browse Source

url: removed "extern" from function declaration.

Ryan C. Gordon 4 years ago
parent
commit
cc158f2983
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/misc/SDL_url.c

+ 1 - 1
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)