summaryrefslogtreecommitdiff
path: root/src/sys/sys_unix.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/sys/sys_unix.c')
-rw-r--r--src/sys/sys_unix.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/sys/sys_unix.c b/src/sys/sys_unix.c
index a712e41d..53a86354 100644
--- a/src/sys/sys_unix.c
+++ b/src/sys/sys_unix.c
@@ -71,23 +71,6 @@ char *Sys_DefaultHomePath(void)
return homePath;
}
-#ifndef MACOS_X
-/*
-================
-Sys_TempPath
-================
-*/
-const char *Sys_TempPath( void )
-{
- const char *TMPDIR = getenv( "TMPDIR" );
-
- if( TMPDIR == NULL || TMPDIR[ 0 ] == '\0' )
- return "/tmp";
- else
- return TMPDIR;
-}
-#endif
-
/*
================
Sys_Milliseconds