Imported Upstream version 2.5.0
[debian/amanda] / common-src / clock.h
index 8d3922e2dd2694e3f3d916c0409d9febb4776c1a..4da1cfca8757559e6f29bb2fbc65653b1e3cb89a 100644 (file)
@@ -25,7 +25,7 @@
  *                        University of Maryland at College Park
  */
 /*
- * $Id: clock.h,v 1.2.2.2 2002/03/31 21:01:33 jrjackson Exp $
+ * $Id: clock.h,v 1.5 2002/04/08 00:16:18 jrjackson Exp $
  *
  * interface for timing functions
  */
@@ -44,6 +44,14 @@ typedef struct times_s {
 
 extern times_t times_zero, start_time;
 
+#ifdef HAVE_TWO_ARG_GETTIMEOFDAY
+#  define amanda_timezone struct timezone
+#  define amanda_gettimeofday(x, y) gettimeofday((x), (y))
+#else
+#  define amanda_timezone int
+#  define amanda_gettimeofday(x, y) gettimeofday((x))
+#endif
+
 void startclock P((void));
 times_t stopclock P((void));
 times_t curclock P((void));