sha3: code shrink
[oweals/busybox.git] / libbb / bb_do_delay.c
index 1fbdc9ae82a26cf904fcf3c86dd53deed1e154a0..05c879fb93f824eee61e1761f79014892b765992 100644 (file)
@@ -4,29 +4,18 @@
  *
  * Copyright (C) 2005 by Tito Ragusa <tito-wolit@tiscali.it>
  *
- * Licensed under the GPL v2, see the file LICENSE in this tarball.
+ * Licensed under GPLv2, see file LICENSE in this source tree.
  */
 
-#include <time.h>
-#include <unistd.h>
 #include "libbb.h"
 
-void bb_do_delay(int seconds)
+void FAST_FUNC bb_do_delay(int seconds)
 {
        time_t start, now;
 
-       time(&start);
-       now = start;
-       while (difftime(now, start) < seconds) {
+       start = time(NULL);
+       do {
                sleep(seconds);
-               time(&now);
-       }
+               now = time(NULL);
+       } while ((now - start) < seconds);
 }
-
-/*
-Local Variables:
-c-file-style: "linux"
-c-basic-offset: 4
-tab-width: 4
-End:
-*/