mirror of
https://github.com/reactos/reactos.git
synced 2025-07-10 17:54:13 +00:00

* Create a branch for some evul shell experiments. svn path=/branches/shell-experiments/; revision=61927
13 lines
163 B
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);
|
|
}
|