pike.git
/
src
/
time_stuff.h
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/time_stuff.h:1:
/* || This file is part of Pike. For copyright information see COPYRIGHT. || Pike is distributed under GPL, LGPL and MPL. See the file COPYING || for more information.
-
|| $Id: time_stuff.h,v 1.
15
2006/
06
/
20
17
:
53
:
04
mast Exp $
+
|| $Id: time_stuff.h,v 1.
16
2006/
08
/
02
15
:
02
:
40
mast Exp $
*/ #ifndef TIME_STUFF_H #define TIME_STUFF_H
-
#
ifndef CONFIGURE_TEST
-
#
include "
machine
.h"
-
#endif
+
#include "
global
.h"
#if TIME_WITH_SYS_TIME # include <sys/time.h> # include <time.h> #else # if HAVE_SYS_TIME_H # include <sys/time.h> # else # if HAVE_TIME_H # include <time.h>
pike.git/src/time_stuff.h:73:
#endif #ifndef HAVE_STRUCT_TIMEVAL struct timeval { long tv_sec; long tv_usec; }; #endif
-
+
#endif