Skip to content

Instantly share code, notes, and snippets.

@echristopherson
Created July 6, 2016 02:44
Show Gist options
  • Select an option

  • Save echristopherson/4a7402ccd782dc894f35472eaa180371 to your computer and use it in GitHub Desktop.

Select an option

Save echristopherson/4a7402ccd782dc894f35472eaa180371 to your computer and use it in GitHub Desktop.
#include <stdio.h>
void somefunc1();
void somefunc2(void);
void somefunc3();
void somefunc4(void);
int main() {
somefunc1();
somefunc2();
somefunc3();
somefunc4();
return 0;
}
void somefunc1() {
printf("somefunc1\n");
}
void somefunc2() {
printf("somefunc2\n");
}
void somefunc3(void) {
printf("somefunc3\n");
}
void somefunc4(void) {
printf("somefunc4\n");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment