Switch to ANSI C style C function declarations.
main(argc, argv) --> int main(int argc, char** argv) Although we accept int, void, and char types, and pointers to same, we actually still treat everything as an int.
Loading
Please register or sign in to comment