So I was looking over someone elses code, and the main is unusual, no type. its just:
#include <math.h>
main(int argc, char *argv[])
I've come up with 2 theories:
1) It defaults to int?
2) #if/#endif directives somehow negate the need for int? Have no experience with this though, so its a shot in the dark.
So is anything wrong or nothing to worry about?