#include "namespace.h" #include #include #include "internal.h" #define VERSION "2.0" thyme_t thyme(thyme_t *p) { thyme_t t = (thyme_t)0x0123456789abcdefULL; if (p) *p = t; return t; } int i(int y, int d) { printf("%s %s:%d i_int(%x, %d)\n", VERSION, __FILE__, __LINE__, y, d); return y + d; } int f(int x) { printf("%s %s:%d f_int(%x)\n", VERSION, __FILE__, __LINE__, x); return i(x << 8, 1); }