sbc_reinit_a2dp() is missing the SBC_EXPORT attribute so it's not visibile to be used by consumers of the shared object. --- sbc/sbc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbc/sbc.c b/sbc/sbc.c index 7f1efaa..edbe332 100644 --- a/sbc/sbc.c +++ b/sbc/sbc.c @@ -1191,7 +1191,7 @@ SBC_EXPORT int sbc_init_a2dp(sbc_t *sbc, unsigned long flags, return 0; } -int sbc_reinit_a2dp(sbc_t *sbc, unsigned long flags, +SBC_EXPORT int sbc_reinit_a2dp(sbc_t *sbc, unsigned long flags, const void *conf, size_t conf_len) { int err; -- 2.24.0