summaryrefslogtreecommitdiff
path: root/bin/pdksh/ksh_times.h
diff options
context:
space:
mode:
authorJason Downs <downsj@cvs.openbsd.org>1996-08-14 06:19:13 +0000
committerJason Downs <downsj@cvs.openbsd.org>1996-08-14 06:19:13 +0000
commit3039b959c7de1e35fe4ec27ae02f1c8fe8d4d4ac (patch)
tree09c6b5a4f13282e07afe153445fcfaa0d10651f4 /bin/pdksh/ksh_times.h
parent596c2317eee31ab9606c6b88085644407d4d2f0f (diff)
Import pdksh 5.2.7.
Diffstat (limited to 'bin/pdksh/ksh_times.h')
-rw-r--r--bin/pdksh/ksh_times.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/bin/pdksh/ksh_times.h b/bin/pdksh/ksh_times.h
new file mode 100644
index 00000000000..45f1b793821
--- /dev/null
+++ b/bin/pdksh/ksh_times.h
@@ -0,0 +1,13 @@
+/* $OpenBSD: ksh_times.h,v 1.1 1996/08/14 06:19:11 downsj Exp $ */
+
+#include <sys/times.h>
+
+#ifdef TIMES_BROKEN
+extern clock_t ksh_times ARGS((struct tms *));
+#else /* TIMES_BROKEN */
+# define ksh_times times
+#endif /* TIMES_BROKEN */
+
+#ifdef HAVE_TIMES
+extern clock_t times ARGS((struct tms *));
+#endif /* HAVE_TIMES */