/*@@ @file datestamp.c @date Mon May 11 10:20:58 1998 @author Paul Walker @desc @enddesc @@*/ #include static char *rcsid = "$Id$"; /*@@ @routine datastamp @date Mon May 11 10:20:58 1998 @author Paul Walker @desc @enddesc @calls @calledby @history @endhistory @@*/ void datestamp() { printf (" Compiled on %s at %s\n", __DATE__, __TIME__); } /*@@ @routine compileTime @date Mon May 11 10:20:58 1998 @author Paul Walker @desc @enddesc @calls @calledby @history @endhistory @@*/ char *compileTime() { return (__TIME__); } /*@@ @routine compileDate @date Mon May 11 10:20:58 1998 @author Paul Walker @desc @enddesc @calls @calledby @history @endhistory @@*/ char *compileDate() { return (__DATE__); } /*#define MAKETEST*/ #ifdef MAKETEST int main() { printf("CCTK maketest compiled on %s\n", compileDate()); return 0; } #endif