Hacker News new | ask | show | jobs
by flohofwoe 2314 days ago
The "#define int long long" is annoying indeed. A quick hack to make it work is:

#include <stdint.h>

...and then replace the two "int" in main() with int32_t.

1 comments

Doesn't that make it fail to maintain the self hosting property that is most likely behind the introduction of this define?