--- a/include/SDL_getenv.h Wed Apr 10 17:12:32 2002 +0000
+++ b/include/SDL_getenv.h Thu Apr 11 14:35:16 2002 +0000
@@ -14,11 +14,11 @@
#endif
/* Put a variable of the form "name=value" into the environment */
-extern DECLSPEC int SDL_putenv(const char *variable);
+extern DECLSPEC int SDLCALL SDL_putenv(const char *variable);
#define putenv(X) SDL_putenv(X)
/* Retrieve a variable named "name" from the environment */
-extern DECLSPEC char *SDL_getenv(const char *name);
+extern DECLSPEC char * SDLCALL SDL_getenv(const char *name);
#define getenv(X) SDL_getenv(X)
/* Ends C function definitions when using C++ */