newtree/source/sys_win.c

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