Skip to content

Commit

Permalink
change angle bracket import to quotes (#868)
Browse files Browse the repository at this point in the history
  • Loading branch information
yihanzhen committed Oct 25, 2021
1 parent 5671e01 commit 2b131e0
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 13 deletions.
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 @@ -24,7 +24,7 @@ package sqlite3
#cgo openbsd CFLAGS: -I/usr/local/include
#cgo openbsd LDFLAGS: -L/usr/local/lib
#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 @@ -6,7 +6,7 @@ package sqlite3

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

0 comments on commit 2b131e0

Please sign in to comment.