Created
July 6, 2016 02:44
-
-
Save echristopherson/4a7402ccd782dc894f35472eaa180371 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #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