date and time created 81/01/08 12:43:59 by mckusick
authorKirk McKusick <mckusick@ucbvax.Berkeley.EDU>
Fri, 9 Jan 1981 04:43:59 +0000 (20:43 -0800)
committerKirk McKusick <mckusick@ucbvax.Berkeley.EDU>
Fri, 9 Jan 1981 04:43:59 +0000 (20:43 -0800)
SCCS-vsn: usr.bin/pascal/px/version.c 1.1

usr/src/usr.bin/pascal/px/version.c [new file with mode: 0644]

diff --git a/usr/src/usr.bin/pascal/px/version.c b/usr/src/usr.bin/pascal/px/version.c
new file mode 100644 (file)
index 0000000..0b6b7b8
--- /dev/null
@@ -0,0 +1,16 @@
+/* Copyright (c) 1979 Regents of the University of California */
+
+static char sccsid[] = "@(#)version.c 1.1 %G%";
+
+    /*
+     * this writes the declaration of the current time stamp
+     * onto standard output.
+     * useful for making Version.c to give the creation date for px.
+     */
+
+#include       <time.h>
+
+main()
+{
+       printf( "long   createtime = %d;\n" , time(0) );
+}