Subversion Repositories Kolibri OS

Rev

Rev 6350 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
5131 clevermous 1
 
2
3
 
4
#define NEED_SDL_GETENV
5
#endif
6
7
 
8
9
 
10
/* Set up for C function definitions, even when using C++ */
11
#ifdef __cplusplus
12
extern "C" {
13
#endif
14
15
 
16
extern DECLSPEC int SDL_putenv(const char *variable);
17
#define putenv(X)   SDL_putenv(X)
6386 ashmew2 18
5131 clevermous 19
 
20
extern DECLSPEC char *SDL_getenv(const char *name);
21
#define getenv(X)     SDL_getenv(X)
22
23
 
24
#ifdef __cplusplus
25
}
26
#endif
27
#include "close_code.h"
28
29
 
30