I\'m sure this has been asked before, but I couldn\'t find anything that would help me. I have a program with functions in C that looks like this
function2(
Forward declare your functions, but by using prototypes. If you have a lot of them such that you can't handle this, this is the moment to think of your design and to create a .h file with all your prototypes. Use
int function1(void);
int function2(void);
if that was what you meant. int function1() already is different from that in C. Help the compiler such that he can help you.