summaryrefslogtreecommitdiff
path: root/gnu/libexec/uucp/libunix/time.c
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1995-10-18 08:53:40 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1995-10-18 08:53:40 +0000
commitd6583bb2a13f329cf0332ef2570eb8bb8fc0e39c (patch)
treeece253b876159b39c620e62b6c9b1174642e070e /gnu/libexec/uucp/libunix/time.c
initial import of NetBSD tree
Diffstat (limited to 'gnu/libexec/uucp/libunix/time.c')
-rw-r--r--gnu/libexec/uucp/libunix/time.c32
1 files changed, 32 insertions, 0 deletions
diff --git a/gnu/libexec/uucp/libunix/time.c b/gnu/libexec/uucp/libunix/time.c
new file mode 100644
index 00000000000..d0462433a7d
--- /dev/null
+++ b/gnu/libexec/uucp/libunix/time.c
@@ -0,0 +1,32 @@
+/* time.c
+ Get the current time. */
+
+#include "uucp.h"
+
+#if HAVE_TIME_H
+#include <time.h>
+#endif
+
+#include "system.h"
+
+#ifndef time
+extern time_t time ();
+#endif
+
+/* Get the time in seconds since the epoch, with optional
+ microseconds. We use ixsysdep_process_time to get the microseconds
+ if it will work (it won't if it uses times, since that returns a
+ time based only on the process). */
+
+long
+ixsysdep_time (pimicros)
+ long *pimicros;
+{
+#if HAVE_GETTIMEOFDAY || HAVE_FTIME
+ return ixsysdep_process_time (pimicros);
+#else
+ if (pimicros != NULL)
+ *pimicros = 0;
+ return (long) time ((time_t *) NULL);
+#endif
+}