1
0
Fork 0
mirror of https://github.com/reactos/reactos.git synced 2025-05-02 04:05:56 +00:00
reactos/sdk/lib/crt/stdlib/wputenv.c

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