turn #if into #ifdef - avoid preprocesor warning

This commit is contained in:
Radim Kolar 2009-08-19 16:29:48 +02:00
parent a28943af21
commit a09d920269

View File

@ -59,11 +59,11 @@
#include "common_def.h"
#include "client_def.h"
#include "c_extern.h"
#if TIME_WITH_SYS_TIME
#ifdef TIME_WITH_SYS_TIME
# include <sys/time.h>
# include <time.h>
#else
# if HAVE_SYS_TIME_H
# ifdef HAVE_SYS_TIME_H
# include <sys/time.h>
# else
# include <time.h>