mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
14 lines
163 B
C
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);
|
||
|
}
|