diff options
author | bloodstalker <thabogre@gmail.com> | 2017-10-29 01:33:32 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2017-10-29 01:33:32 +0000 |
commit | fd9ebcc3b2bbbc0a6884e2617a05f2b7f3f6177d (patch) | |
tree | 403f72733db17293ce87769409bd995b2fbf2046 /bfd/test | |
parent | forgot this one (diff) | |
download | mutator-fd9ebcc3b2bbbc0a6884e2617a05f2b7f3f6177d.tar.gz mutator-fd9ebcc3b2bbbc0a6884e2617a05f2b7f3f6177d.zip |
now i can get the symbol names, next thing is to load the object code up in bruiser...
Diffstat (limited to 'bfd/test')
-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"); } |