new copyright; att/bsd/shared
[unix-history] / usr / src / usr.bin / pascal / px / version.c
CommitLineData
505bf312
KB
1/*-
2 * Copyright (c) 1980 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * %sccs.include.redist.c%
1259848a 6 */
ff8f9dbf 7
1259848a
DF
8#ifndef lint
9char copyright[] =
505bf312 10"@(#) Copyright (c) 1980 The Regents of the University of California.\n\
1259848a 11 All rights reserved.\n";
505bf312 12#endif /* not lint */
1259848a
DF
13
14#ifndef lint
505bf312
KB
15static char sccsid[] = "@(#)version.c 5.3 (Berkeley) %G%";
16#endif /* not lint */
ff8f9dbf
KM
17
18 /*
19 * this writes the declaration of the current time stamp
20 * onto standard output.
21 * useful for making Version.c to give the creation date for px.
22 */
23
9a92014d 24extern long time();
ff8f9dbf
KM
25
26main()
27{
9a92014d 28 printf( "long createtime = %D;\n" , time(0) );
9c39ec53 29 exit(0);
ff8f9dbf 30}