12087Smckusick /* Copyright (c) 1979 Regents of the University of California */ 22087Smckusick 3*2954Smckusic static char sccsid[] = "@(#)version.c 1.2 03/06/81"; 42087Smckusick 52087Smckusick /* 62087Smckusick * this writes the declaration of the current time stamp 72087Smckusick * onto standard output. 82087Smckusick * useful for making Version.c to give the creation date for px. 92087Smckusick */ 102087Smckusick 11*2954Smckusic extern long time(); 122087Smckusick 132087Smckusick main() 142087Smckusick { 15*2954Smckusic printf( "long createtime = %D;\n" , time(0) ); 162087Smckusick } 17