mirror of
https://git.code.sf.net/p/quake/newtree
synced 2024-11-14 00:21:27 +00:00
bb8b80ea0a
cl_sys_win.c: win32-specific client stuff. Added qboolean is_server = false; renamed filelength() to wfilelength() sv_sys_win.c: win32-specific server stuff. Added qboolean is_server = true;
14 lines
168 B
C
14 lines
168 B
C
// TODO: put a GPL header and file comment here
|
|
|
|
#include <direct.h>
|
|
|
|
/*
|
|
================
|
|
Sys_mkdir
|
|
================
|
|
*/
|
|
void Sys_mkdir (char *path)
|
|
{
|
|
_mkdir(path);
|
|
}
|
|
|