diff --git a/Sources/SQLiteObjc/fts3_tokenizer.h b/Sources/SQLiteObjc/fts3_tokenizer.h index d8a1e44b..1896a44e 100644 --- a/Sources/SQLiteObjc/fts3_tokenizer.h +++ b/Sources/SQLiteObjc/fts3_tokenizer.h @@ -24,7 +24,11 @@ ** If tokenizers are to be allowed to call sqlite3_*() functions, then ** we will need a way to register the API consistently. */ -#import "sqlite3.h" +#if __has_include() +#import +#else +#import "sqlite3.h" #import "sqlite3.h" +#endif /* ** Structures used by the tokenizer interface. When a new tokenizer