summaryrefslogtreecommitdiff
path: root/src/sys/sys_win32.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/sys/sys_win32.c')
-rw-r--r--src/sys/sys_win32.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/sys/sys_win32.c b/src/sys/sys_win32.c
index fb0f51a7..635b157f 100644
--- a/src/sys/sys_win32.c
+++ b/src/sys/sys_win32.c
@@ -686,21 +686,6 @@ void Sys_PlatformExit( void )
/*
==============
-Sys_SetEnv
-
-set/unset environment variables (empty value removes it)
-==============
-*/
-void Sys_SetEnv(const char *name, const char *value)
-{
- if(value)
- _putenv(va("%s=%s", name, value));
- else
- _putenv(va("%s=", name));
-}
-
-/*
-==============
Sys_PID
==============
*/