diff options
author | Yang Tse <yangsita@gmail.com> | 2007-02-20 12:12:27 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2007-02-20 12:12:27 +0000 |
commit | 29bb6f65f1ac786b189ca6e860b463c5142bc486 (patch) | |
tree | e42f0cad0d307136e66594a443ec5ab34bd9eb1a /tests | |
parent | 37f07a54bdb48b2fd1a564a054d20a576f4de342 (diff) |
Move header file inclusion logic and definition of timeval
struct for platforms that don't have it to setup_once.h
Diffstat (limited to 'tests')
-rw-r--r-- | tests/libtest/testutil.c | 2 | ||||
-rw-r--r-- | tests/libtest/testutil.h | 20 |
2 files changed, 2 insertions, 20 deletions
diff --git a/tests/libtest/testutil.c b/tests/libtest/testutil.c index dc0211026..146660c71 100644 --- a/tests/libtest/testutil.c +++ b/tests/libtest/testutil.c @@ -21,6 +21,8 @@ * $Id$ ***************************************************************************/ +#include "setup.h" + #include "testutil.h" #ifndef HAVE_GETTIMEOFDAY diff --git a/tests/libtest/testutil.h b/tests/libtest/testutil.h index e248c1ebe..6f7839d24 100644 --- a/tests/libtest/testutil.h +++ b/tests/libtest/testutil.h @@ -25,26 +25,6 @@ #include "setup.h" -#ifdef HAVE_SYS_TYPES_H -#include <sys/types.h> -#endif -#ifdef HAVE_SYS_TIME_H -#include <sys/time.h> -#ifdef TIME_WITH_SYS_TIME -#include <time.h> -#endif -#else -#ifdef HAVE_TIME_H -#include <time.h> -#endif -#endif - -#ifndef HAVE_STRUCT_TIMEVAL -struct timeval { - long tv_sec; - long tv_usec; -}; -#endif struct timeval tutil_tvnow(void); |