putenv(x) -> sdlputenv(x)

git-svn-id: svn://kolibrios.org@6350 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
ashmew2 2016-03-16 12:45:19 +00:00
parent c6e787c15f
commit bd2ce8aeba

View File

@ -15,7 +15,7 @@ extern "C" {
/* Put a variable of the form "name=value" into the environment */
extern DECLSPEC int SDL_putenv(const char *variable);
#define putenv(X) SDL_putenv(X)
#define sdlputenv(X) SDL_putenv(X)
/* Retrieve a variable named "name" from the environment */
extern DECLSPEC char *SDL_getenv(const char *name);