mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2025-02-16 17:11:03 +00:00
Include ctype.h and silence some warnings
This commit is contained in:
parent
263156bda7
commit
0b226ce838
1 changed files with 6 additions and 5 deletions
|
@ -24,8 +24,9 @@
|
|||
* =======================================================================
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <ctype.h>
|
||||
#include <process.h>
|
||||
#include <stdio.h>
|
||||
#include <windows.h>
|
||||
#include "header/conproc.h"
|
||||
|
||||
|
@ -83,11 +84,11 @@ CCheckParm(char *parm)
|
|||
void
|
||||
InitConProc(int argc, char **argv)
|
||||
{
|
||||
unsigned threadAddr;
|
||||
HANDLE hFile;
|
||||
HANDLE heventParent;
|
||||
HANDLE heventChild;
|
||||
HANDLE hFile = NULL;
|
||||
HANDLE heventParent = NULL;
|
||||
HANDLE heventChild = NULL;
|
||||
int t;
|
||||
unsigned int threadAddr;
|
||||
|
||||
ccom_argc = argc;
|
||||
ccom_argv = argv;
|
||||
|
|
Loading…
Reference in a new issue