On Mon, 16 Aug 1999, Kanoj Sarcar wrote:
> ^^^ What is 2038?
#include <time.h>
main()
{
time_t t = ~0UL >> 1;
printf("%x, %s", t, ctime(&t));
t++;
printf("%x, %s", t, ctime(&t));
}
Andrea
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://humbolt.geo.uu.nl/Linux-MM/