/*
* timestamp
*
* This program merely prints out the current Unix timestamp
* value, as a decimal integer.  It's useful in scripts that
* want to deal with time in a language-independent manner.
*/
#include <time.h>

main()
{	time_t t;
	time(&t);
	printf("%lu\n",(unsigned long)t);
	exit(0);
}
