]> granicus.if.org Git - fcron/commitdiff
use gettimeofday only if defined
authorthib <thib>
Wed, 13 Sep 2000 15:45:14 +0000 (15:45 +0000)
committerthib <thib>
Wed, 13 Sep 2000 15:45:14 +0000 (15:45 +0000)
fcron.c

diff --git a/fcron.c b/fcron.c
index 9b2871d59bb68602c4468837f6a5d702a7e0d6ed..19d1007b732a1e6a42a3b1c5756b12b60b7b4841 100644 (file)
--- a/fcron.c
+++ b/fcron.c
  *  `LICENSE' that comes with the fcron source distribution.
  */
 
- /* $Id: fcron.c,v 1.27 2000-09-13 15:37:43 thib Exp $ */
+ /* $Id: fcron.c,v 1.28 2000-09-13 15:45:14 thib Exp $ */
 
 #include "fcron.h"
 
-char rcs_info[] = "$Id: fcron.c,v 1.27 2000-09-13 15:37:43 thib Exp $";
+char rcs_info[] = "$Id: fcron.c,v 1.28 2000-09-13 15:45:14 thib Exp $";
 
 void main_loop(void);
 void check_signal(void);
@@ -503,9 +503,13 @@ main_loop()
 
     for (;;) {
        
+#ifdef HAVE_GETTIMEOFDAY
        sleep(stime - 1);
        gettimeofday(&tv, NULL);
        usleep( 1000000 - tv.tv_usec );
+#else
+       sleep(stime);
+#endif /* HAVE_GETTIMEOFDAY */
 
        now = time(NULL);