diff options
Diffstat (limited to 'test cases/unit/66 static link/lib/func19.c')
-rw-r--r-- | test cases/unit/66 static link/lib/func19.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test cases/unit/66 static link/lib/func19.c b/test cases/unit/66 static link/lib/func19.c new file mode 100644 index 0000000..69120e4 --- /dev/null +++ b/test cases/unit/66 static link/lib/func19.c @@ -0,0 +1,7 @@ +int func17(); +int func18(); + +int func19() +{ + return func17() + func18(); +} |