xref: /csrg-svn/usr.bin/pascal/px/version.c (revision 22157)
1*22157Sdist /*
2*22157Sdist  * Copyright (c) 1980 Regents of the University of California.
3*22157Sdist  * All rights reserved.  The Berkeley software License Agreement
4*22157Sdist  * specifies the terms and conditions for redistribution.
5*22157Sdist  */
62087Smckusick 
7*22157Sdist #ifndef lint
8*22157Sdist char copyright[] =
9*22157Sdist "@(#) Copyright (c) 1980 Regents of the University of California.\n\
10*22157Sdist  All rights reserved.\n";
11*22157Sdist #endif not lint
122087Smckusick 
13*22157Sdist #ifndef lint
14*22157Sdist static char sccsid[] = "@(#)version.c	5.1 (Berkeley) 06/05/85";
15*22157Sdist #endif not lint
16*22157Sdist 
172087Smckusick     /*
182087Smckusick      *	this writes the declaration of the current time stamp
192087Smckusick      *	onto standard output.
202087Smckusick      *	useful for making Version.c to give the creation date for px.
212087Smckusick      */
222087Smckusick 
232954Smckusic extern long time();
242087Smckusick 
252087Smckusick main()
262087Smckusick {
272954Smckusic 	printf( "long	createtime = %D;\n" , time(0) );
282087Smckusick }
29