reactos/lib/sdk/crt/stdlib/wputenv.c
2013-06-16 22:01:41 +00:00

13 lines
163 B
C

#include <precomp.h>
/* misc/environ.c */
int SetEnv(const wchar_t *option);
/*
* @implemented
*/
int _wputenv(const wchar_t* val)
{
return SetEnv(val);
}