diff options
Diffstat (limited to 'test cases/unit/65 static archive stripping/lib/libB.c')
-rw-r--r-- | test cases/unit/65 static archive stripping/lib/libB.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test cases/unit/65 static archive stripping/lib/libB.c b/test cases/unit/65 static archive stripping/lib/libB.c new file mode 100644 index 0000000..0200b1f --- /dev/null +++ b/test cases/unit/65 static archive stripping/lib/libB.c @@ -0,0 +1,5 @@ +#include <libB.h> + +static int libB_func_impl(void) { return 0; } + +int libB_func(void) { return libB_func_impl(); } |