122157Sdist /* 222157Sdist * Copyright (c) 1980 Regents of the University of California. 322157Sdist * All rights reserved. The Berkeley software License Agreement 422157Sdist * specifies the terms and conditions for redistribution. 522157Sdist */ 62087Smckusick 722157Sdist #ifndef lint 822157Sdist char copyright[] = 922157Sdist "@(#) Copyright (c) 1980 Regents of the University of California.\n\ 1022157Sdist All rights reserved.\n"; 1122157Sdist #endif not lint 122087Smckusick 1322157Sdist #ifndef lint 14*44350Sbostic static char sccsid[] = "@(#)version.c 5.2 (Berkeley) 06/28/90"; 1522157Sdist #endif not lint 1622157Sdist 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) ); 28*44350Sbostic exit(0); 292087Smckusick } 30