148108Sbostic /*- 2*62183Sbostic * Copyright (c) 1980, 1993 3*62183Sbostic * The Regents of the University of California. All rights reserved. 448108Sbostic * 548108Sbostic * %sccs.include.redist.c% 622157Sdist */ 72087Smckusick 822157Sdist #ifndef lint 9*62183Sbostic static char copyright[] = 10*62183Sbostic "@(#) Copyright (c) 1980, 1993\n\ 11*62183Sbostic The Regents of the University of California. All rights reserved.\n"; 1248108Sbostic #endif /* not lint */ 132087Smckusick 1422157Sdist #ifndef lint 15*62183Sbostic static char sccsid[] = "@(#)version.c 8.1 (Berkeley) 06/06/93"; 1648108Sbostic #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 main()262087Smckusickmain() 272087Smckusick { 282954Smckusic printf( "long createtime = %D;\n" , time(0) ); 2944350Sbostic exit(0); 302087Smckusick } 31