xref: /reactos/sdk/lib/crt/stdlib/wputenv.c (revision 84ccccab)
1 #include <precomp.h>
2 
3 
4 /* misc/environ.c */
5 int SetEnv(const wchar_t *option);
6 
7 /*
8  * @implemented
9  */
10 int _wputenv(const wchar_t* val)
11 {
12    return SetEnv(val);
13 }
14