aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/mingw.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/mingw.h b/include/mingw.h
index 08e1aed48..ea70313ff 100644
--- a/include/mingw.h
+++ b/include/mingw.h
@@ -130,12 +130,12 @@ int fdprintf(int fd, const char *format, ...);
130#define WIFSIGNALED(x) ((unsigned)(x) > 259) 130#define WIFSIGNALED(x) ((unsigned)(x) > 259)
131#define WTERMSIG(x) ((x) & 0x7f) 131#define WTERMSIG(x) ((x) & 0x7f)
132 132
133NOIMPL(clearenv,void); 133int clearenv(void);
134IMPL(mingw_getenv,char*,NULL,const char *name UNUSED_PARAM); 134char *mingw_getenv(const char *name);
135int mkstemp(char *template); 135int mkstemp(char *template);
136char *realpath(const char *path, char *resolved_path); 136char *realpath(const char *path, char *resolved_path);
137NOIMPL(setenv,const char *name UNUSED_PARAM, const char *value UNUSED_PARAM, int replace UNUSED_PARAM); 137int setenv(const char *name, const char *value, int replace);
138IMPL(unsetenv,void,,const char *env UNUSED_PARAM); 138void unsetenv(const char *env);
139 139
140#define getenv mingw_getenv 140#define getenv mingw_getenv
141/* 141/*