]> git.gag.com Git - debian/sudo/blobdiff - gettime.c
Imported Upstream version 1.7.6p1
[debian/sudo] / gettime.c
index 9a13003c4f9eb85984322ba9c2b8293511438071..6cb15d7843dcd9c7a6154cef9ac0392f7b694340 100644 (file)
--- a/gettime.c
+++ b/gettime.c
@@ -24,7 +24,7 @@
 # include <time.h>
 #endif
 
-#include <compat.h>
+#include "missing.h"
 
 /*
  * Get the current time via gettimeofday() for systems with
@@ -41,5 +41,5 @@ gettime(tv)
     rval = (int)time(&tv->tv_sec);
     tv->tv_usec = 0;
 #endif
-    return (rval);
+    return rval;
 }