diff --git a/tools/find_unwrapped_apis.py b/tools/find_unwrapped_apis.py index 9deb267e..b8368bbd 100755 --- a/tools/find_unwrapped_apis.py +++ b/tools/find_unwrapped_apis.py @@ -136,7 +136,9 @@ assert res.returncode >= 0 if res.returncode == 0: # found if f in nowrap: - print(f"function { f } is in nowrap, but also in source") + # these aren't wrapped but are used in fts.c + if f not in {"sqlite3_bind_pointer", "sqlite3_prepare", "sqlite3_result_error_nomem"}: + print(f"function { f } is in nowrap, but also in source") continue if f not in nowrap: print("missing", f) \ No newline at end of file