xref: /csrg-svn/usr.bin/pascal/px/version.c (revision 2087)
1*2087Smckusick /* Copyright (c) 1979 Regents of the University of California */
2*2087Smckusick 
3*2087Smckusick static char sccsid[] = "@(#)version.c 1.1 01/08/81";
4*2087Smckusick 
5*2087Smckusick     /*
6*2087Smckusick      *	this writes the declaration of the current time stamp
7*2087Smckusick      *	onto standard output.
8*2087Smckusick      *	useful for making Version.c to give the creation date for px.
9*2087Smckusick      */
10*2087Smckusick 
11*2087Smckusick #include	<time.h>
12*2087Smckusick 
13*2087Smckusick main()
14*2087Smckusick {
15*2087Smckusick 	printf( "long	createtime = %d;\n" , time(0) );
16*2087Smckusick }
17