date and time created 81/02/18 21:48:38 by dlw
authorDavid Wasley <dlw@ucbvax.Berkeley.EDU>
Thu, 19 Feb 1981 13:48:38 +0000 (05:48 -0800)
committerDavid Wasley <dlw@ucbvax.Berkeley.EDU>
Thu, 19 Feb 1981 13:48:38 +0000 (05:48 -0800)
SCCS-vsn: usr.bin/f77/libU77/time_.c 1.1

usr/src/usr.bin/f77/libU77/time_.c [new file with mode: 0644]

diff --git a/usr/src/usr.bin/f77/libU77/time_.c b/usr/src/usr.bin/f77/libU77/time_.c
new file mode 100644 (file)
index 0000000..a4805cc
--- /dev/null
@@ -0,0 +1,18 @@
+/*
+char id_time[] = "@(#)time_.c  1.1";
+ *
+ * return the current time as an integer
+ *
+ * calling sequence:
+ *     integer time
+ *     i = time()
+ * where:
+ *     i will receive the current GMT in seconds.
+ */
+
+long time();
+
+long time_()
+{
+       return(time(0));
+}