diff options
Diffstat (limited to 'bfd/test/test.c')
-rw-r--r-- | bfd/test/test.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/bfd/test/test.c b/bfd/test/test.c index 0327658..fe2932c 100644 --- a/bfd/test/test.c +++ b/bfd/test/test.c @@ -1,5 +1,17 @@ #include "stdio.h" +int myfunc1(void) {return 1;} +int myfunc2(void) {return 2;} +int myfunc3(void) {return 3;} +int myfunc4(void) {return 4;} +int myfunc5(void) {return 5;} +int myfunc6(void) {return 6;} + +int myvar1 = 1; +int myvar2 = 2; +int myvar3 = 3; +int myvar4 = 4; + int main(int argc, char** argv) { printf("i live!\n"); } |