From ff8f9dbf2e6a2d0562104cc6ce4c9dbaf9b09859 Mon Sep 17 00:00:00 2001 From: Kirk McKusick Date: Thu, 8 Jan 1981 20:43:59 -0800 Subject: [PATCH] date and time created 81/01/08 12:43:59 by mckusick SCCS-vsn: usr.bin/pascal/px/version.c 1.1 --- usr/src/usr.bin/pascal/px/version.c | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 usr/src/usr.bin/pascal/px/version.c diff --git a/usr/src/usr.bin/pascal/px/version.c b/usr/src/usr.bin/pascal/px/version.c new file mode 100644 index 0000000000..0b6b7b83d4 --- /dev/null +++ b/usr/src/usr.bin/pascal/px/version.c @@ -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 + +main() +{ + printf( "long createtime = %d;\n" , time(0) ); +} -- 2.20.1