diff options
Diffstat (limited to 'test cases/linuxlike/3 linker script/bob.c')
-rw-r--r-- | test cases/linuxlike/3 linker script/bob.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test cases/linuxlike/3 linker script/bob.c b/test cases/linuxlike/3 linker script/bob.c new file mode 100644 index 0000000..50e29c7 --- /dev/null +++ b/test cases/linuxlike/3 linker script/bob.c @@ -0,0 +1,9 @@ +#include"bob.h" + +int hiddenFunction(void) { + return 42; +} + +int bobMcBob(void) { + return hiddenFunction(); +} |