replaced #if with #ifdefs to silence GCC 3.4 warnings
This commit is contained in:
parent
aaa1bcb8e9
commit
089bc0dee4
|
|
@ -33,14 +33,14 @@
|
|||
#include <grp.h>
|
||||
#include <pwd.h>
|
||||
#include <utmp.h>
|
||||
#if TIME_WITH_SYS_TIME
|
||||
# include <sys/time.h>
|
||||
# include <time.h>
|
||||
#else
|
||||
# if HAVE_SYS_TIME_H
|
||||
#ifdef TIME_WITH_SYS_TIME
|
||||
# include <sys/time.h>
|
||||
# else
|
||||
# include <time.h>
|
||||
#else
|
||||
# ifdef HAVE_SYS_TIME_H
|
||||
# include <sys/time.h>
|
||||
# else
|
||||
# include <time.h>
|
||||
# endif
|
||||
#endif
|
||||
#include "my-string.h"
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user