#include <limits.h>
#include <stdint.h>
#include <stdio.h>

#include <test.h>

int
main(void)
{
	thyme_t t = 0;
	int x = 0x1234567;

	printf("t = %jx", (uintmax_t)t);
	thyme(&t);
	printf(" -> %jx\n", (uintmax_t)t);
	printf("f(x) = %lx\n", (long)f(x));
#ifdef HAVE_G
	printf("g(x) = %x\n", g(x));
#endif

	fflush(stdout);
	return ferror(stdout);
}