1*48108Sbostic /*- 2*48108Sbostic * Copyright (c) 1980 The Regents of the University of California. 3*48108Sbostic * All rights reserved. 4*48108Sbostic * 5*48108Sbostic * %sccs.include.redist.c% 622157Sdist */ 72087Smckusick 822157Sdist #ifndef lint 922157Sdist char copyright[] = 10*48108Sbostic "@(#) Copyright (c) 1980 The Regents of the University of California.\n\ 1122157Sdist All rights reserved.\n"; 12*48108Sbostic #endif /* not lint */ 132087Smckusick 1422157Sdist #ifndef lint 15*48108Sbostic static char sccsid[] = "@(#)version.c 5.3 (Berkeley) 04/16/91"; 16*48108Sbostic #endif /* not lint */ 1722157Sdist 182087Smckusick /* 192087Smckusick * this writes the declaration of the current time stamp 202087Smckusick * onto standard output. 212087Smckusick * useful for making Version.c to give the creation date for px. 222087Smckusick */ 232087Smckusick 242954Smckusic extern long time(); 252087Smckusick 262087Smckusick main() 272087Smckusick { 282954Smckusic printf( "long createtime = %D;\n" , time(0) ); 2944350Sbostic exit(0); 302087Smckusick } 31