reactos/lib/sdk/crt/stdlib/wputenv.c
Timo Kreuzer 9ea495ba33 Create a branch for header work.
svn path=/branches/header-work/; revision=45691
2010-02-26 22:57:55 +00:00

14 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);
}