newtree/source/sys_win.c
Anton E. Gavrilov bb8b80ea0a sys_win.c: win32-specific stuff, common between client and server; moved Sys_mkdir() here
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;
2000-05-12 03:44:21 +00:00

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);
}