Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use quote include instead of angled include for sqlite3-binding.h #868

Merged
merged 1 commit into from Oct 25, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion backup.go
Expand Up @@ -7,7 +7,7 @@ package sqlite3

/*
#ifndef USE_LIBSQLITE3
#include <sqlite3-binding.h>
#include "sqlite3-binding.h"
#else
#include <sqlite3.h>
#endif
Expand Down
2 changes: 1 addition & 1 deletion callback.go
Expand Up @@ -12,7 +12,7 @@ package sqlite3

/*
#ifndef USE_LIBSQLITE3
#include <sqlite3-binding.h>
#include "sqlite3-binding.h"
#else
#include <sqlite3.h>
#endif
Expand Down
2 changes: 1 addition & 1 deletion error.go
Expand Up @@ -7,7 +7,7 @@ package sqlite3

/*
#ifndef USE_LIBSQLITE3
#include <sqlite3-binding.h>
#include "sqlite3-binding.h"
#else
#include <sqlite3.h>
#endif
Expand Down
2 changes: 1 addition & 1 deletion sqlite3.go
Expand Up @@ -22,7 +22,7 @@ package sqlite3
#cgo CFLAGS: -Wno-deprecated-declarations
#cgo linux,!android CFLAGS: -DHAVE_PREAD64=1 -DHAVE_PWRITE64=1
#ifndef USE_LIBSQLITE3
#include <sqlite3-binding.h>
#include "sqlite3-binding.h"
#else
#include <sqlite3.h>
#endif
Expand Down
2 changes: 1 addition & 1 deletion sqlite3_context.go
Expand Up @@ -8,7 +8,7 @@ package sqlite3
/*

#ifndef USE_LIBSQLITE3
#include <sqlite3-binding.h>
#include "sqlite3-binding.h"
#else
#include <sqlite3.h>
#endif
Expand Down
2 changes: 1 addition & 1 deletion sqlite3_load_extension.go
Expand Up @@ -9,7 +9,7 @@ package sqlite3

/*
#ifndef USE_LIBSQLITE3
#include <sqlite3-binding.h>
#include "sqlite3-binding.h"
#else
#include <sqlite3.h>
#endif
Expand Down
2 changes: 1 addition & 1 deletion sqlite3_opt_preupdate_hook.go
Expand Up @@ -13,7 +13,7 @@ package sqlite3
#cgo LDFLAGS: -lm

#ifndef USE_LIBSQLITE3
#include <sqlite3-binding.h>
#include "sqlite3-binding.h"
#else
#include <sqlite3.h>
#endif
Expand Down
2 changes: 1 addition & 1 deletion sqlite3_opt_unlock_notify.c
Expand Up @@ -5,7 +5,7 @@

#ifdef SQLITE_ENABLE_UNLOCK_NOTIFY
#include <stdio.h>
#include <sqlite3-binding.h>
#include "sqlite3-binding.h"

extern int unlock_notify_wait(sqlite3 *db);

Expand Down
2 changes: 1 addition & 1 deletion sqlite3_opt_unlock_notify.go
Expand Up @@ -12,7 +12,7 @@ package sqlite3
#cgo CFLAGS: -DSQLITE_ENABLE_UNLOCK_NOTIFY

#include <stdlib.h>
#include <sqlite3-binding.h>
#include "sqlite3-binding.h"

extern void unlock_notify_callback(void *arg, int argc);
*/
Expand Down
2 changes: 1 addition & 1 deletion sqlite3_opt_userauth.go
Expand Up @@ -11,7 +11,7 @@ package sqlite3
#cgo CFLAGS: -DSQLITE_USER_AUTHENTICATION
#cgo LDFLAGS: -lm
#ifndef USE_LIBSQLITE3
#include <sqlite3-binding.h>
#include "sqlite3-binding.h"
#else
#include <sqlite3.h>
#endif
Expand Down
2 changes: 1 addition & 1 deletion sqlite3_opt_vtable.go
Expand Up @@ -19,7 +19,7 @@ package sqlite3
#cgo CFLAGS: -Wno-deprecated-declarations

#ifndef USE_LIBSQLITE3
#include <sqlite3-binding.h>
#include "sqlite3-binding.h"
#else
#include <sqlite3.h>
#endif
Expand Down
2 changes: 1 addition & 1 deletion sqlite3_trace.go
Expand Up @@ -9,7 +9,7 @@ package sqlite3

/*
#ifndef USE_LIBSQLITE3
#include <sqlite3-binding.h>
#include "sqlite3-binding.h"
#else
#include <sqlite3.h>
#endif
Expand Down
2 changes: 1 addition & 1 deletion sqlite3_type.go
Expand Up @@ -7,7 +7,7 @@ package sqlite3

/*
#ifndef USE_LIBSQLITE3
#include <sqlite3-binding.h>
#include "sqlite3-binding.h"
#else
#include <sqlite3.h>
#endif
Expand Down