diff options
Diffstat (limited to 'code/botlib/l_precomp.c')
| -rw-r--r-- | code/botlib/l_precomp.c | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/code/botlib/l_precomp.c b/code/botlib/l_precomp.c index ae82981..5122931 100644 --- a/code/botlib/l_precomp.c +++ b/code/botlib/l_precomp.c @@ -705,7 +705,12 @@ int PC_ExpandBuiltinDefine(source_t *source, token_t *deftoken, define_t *define  										token_t **firsttoken, token_t **lasttoken)  {  	token_t *token; +#ifdef _WIN32  	unsigned long t;	//	time_t t; //to prevent LCC warning +#else +	time_t t; +#endif +	  	char *curtime;  	token = PC_CopyToken(deftoken);  | 
