diff options
Diffstat (limited to 'test cases/rust/17 staticlib link staticlib/prog.c')
-rw-r--r-- | test cases/rust/17 staticlib link staticlib/prog.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test cases/rust/17 staticlib link staticlib/prog.c b/test cases/rust/17 staticlib link staticlib/prog.c new file mode 100644 index 0000000..853391e --- /dev/null +++ b/test cases/rust/17 staticlib link staticlib/prog.c @@ -0,0 +1,7 @@ +#include <stdio.h> + +int what_have_we_here(); + +int main(void) { + printf("printing %d\n", what_have_we_here()); +} |