Skip to content

Commit 0d404bd

Browse files
committed
change angle bracket import to quotes
1 parent 3cbdae7 commit 0d404bd

13 files changed

+13
-13
lines changed

backup.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ package sqlite3
77

88
/*
99
#ifndef USE_LIBSQLITE3
10-
#include <sqlite3-binding.h>
10+
#include "sqlite3-binding.h"
1111
#else
1212
#include <sqlite3.h>
1313
#endif

callback.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ package sqlite3
1212

1313
/*
1414
#ifndef USE_LIBSQLITE3
15-
#include <sqlite3-binding.h>
15+
#include "sqlite3-binding.h"
1616
#else
1717
#include <sqlite3.h>
1818
#endif

error.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ package sqlite3
77

88
/*
99
#ifndef USE_LIBSQLITE3
10-
#include <sqlite3-binding.h>
10+
#include "sqlite3-binding.h"
1111
#else
1212
#include <sqlite3.h>
1313
#endif

sqlite3.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ package sqlite3
2222
#cgo CFLAGS: -Wno-deprecated-declarations
2323
#cgo linux,!android CFLAGS: -DHAVE_PREAD64=1 -DHAVE_PWRITE64=1
2424
#ifndef USE_LIBSQLITE3
25-
#include <sqlite3-binding.h>
25+
#include "sqlite3-binding.h"
2626
#else
2727
#include <sqlite3.h>
2828
#endif

sqlite3_context.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ package sqlite3
88
/*
99
1010
#ifndef USE_LIBSQLITE3
11-
#include <sqlite3-binding.h>
11+
#include "sqlite3-binding.h"
1212
#else
1313
#include <sqlite3.h>
1414
#endif

sqlite3_load_extension.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ package sqlite3
99

1010
/*
1111
#ifndef USE_LIBSQLITE3
12-
#include <sqlite3-binding.h>
12+
#include "sqlite3-binding.h"
1313
#else
1414
#include <sqlite3.h>
1515
#endif

sqlite3_opt_preupdate_hook.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ package sqlite3
1313
#cgo LDFLAGS: -lm
1414
1515
#ifndef USE_LIBSQLITE3
16-
#include <sqlite3-binding.h>
16+
#include "sqlite3-binding.h"
1717
#else
1818
#include <sqlite3.h>
1919
#endif

sqlite3_opt_unlock_notify.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
#ifdef SQLITE_ENABLE_UNLOCK_NOTIFY
77
#include <stdio.h>
8-
#include <sqlite3-binding.h>
8+
#include "sqlite3-binding.h"
99

1010
extern int unlock_notify_wait(sqlite3 *db);
1111

sqlite3_opt_unlock_notify.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ package sqlite3
1212
#cgo CFLAGS: -DSQLITE_ENABLE_UNLOCK_NOTIFY
1313
1414
#include <stdlib.h>
15-
#include <sqlite3-binding.h>
15+
#include "sqlite3-binding.h"
1616
1717
extern void unlock_notify_callback(void *arg, int argc);
1818
*/

sqlite3_opt_userauth.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ package sqlite3
1111
#cgo CFLAGS: -DSQLITE_USER_AUTHENTICATION
1212
#cgo LDFLAGS: -lm
1313
#ifndef USE_LIBSQLITE3
14-
#include <sqlite3-binding.h>
14+
#include "sqlite3-binding.h"
1515
#else
1616
#include <sqlite3.h>
1717
#endif

0 commit comments

Comments
 (0)