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