diff options
Diffstat (limited to 'meson/test cases/linuxlike/3 linker script/bob.c')
-rw-r--r-- | meson/test cases/linuxlike/3 linker script/bob.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/meson/test cases/linuxlike/3 linker script/bob.c b/meson/test cases/linuxlike/3 linker script/bob.c new file mode 100644 index 000000000..50e29c753 --- /dev/null +++ b/meson/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(); +} |