Merge pull request #98 from Pan7/lcc

Windows header files for q3lcc
This commit is contained in:
Zack Middleton 2015-01-07 19:31:51 -06:00
commit aa1aad928e
1 changed files with 5 additions and 0 deletions

View File

@ -11,7 +11,12 @@ static char rcsid[] = "Id: dummy rcsid";
#include <assert.h>
#include <ctype.h>
#include <signal.h>
#ifdef WIN32
#include <process.h> /* getpid() */
#include <io.h> /* access() */
#else
#include <unistd.h>
#endif
#ifndef TEMPDIR
#define TEMPDIR "/tmp"