#include /* These 2 declarations should be written in a header file, and soon will be. */ void f(void); int g(int i); void f(void) /* function definition */ { printf("f\n"); } int g(int i) { return 2 * i; }