ReactOS 0.4.15-dev-7842-g558ab78
wputenv.c
Go to the documentation of this file.
1#include <precomp.h>
2
3
4/* misc/environ.c */
5int SetEnv(const wchar_t *option);
6
7/*
8 * @implemented
9 */
10int _wputenv(const wchar_t* val)
11{
12 return SetEnv(val);
13}
GLuint GLfloat * val
Definition: glext.h:7180
Definition: getopt.h:109
int _wputenv(const wchar_t *val)
Definition: wputenv.c:10
int SetEnv(const wchar_t *option)
Definition: environ.c:210