Skip to content

Commit d6b3aa3

Browse files
committed
gulp
1 parent 90425ae commit d6b3aa3

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

bridge/sqlite_rsync.c

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#define SQLITE_ENABLE_DBPAGE_VTAB 1
2-
#define SQLITE_RSYNC_USE_H
32

43
#ifndef SQLITE_RSYNC_C_INCLUDED
54
#define SQLITE_RSYNC_C_INCLUDED
@@ -125,7 +124,7 @@ static void win32_fatal_error(const char *zMsg)
125124
fprintf(stderr, "%s", zMsg);
126125
exit(1);
127126
}
128-
extern int _open_osfhandle(intptr_t, int);
127+
#include <io.h> /* For _open_osfhandle */
129128
#else
130129
#include <unistd.h>
131130
#include <signal.h>
@@ -174,7 +173,7 @@ extern int sqlite3_sha_init(
174173
**
175174
** Return the number of errors.
176175
*/
177-
static int win32_create_child_process(
176+
int win32_create_child_process(
178177
wchar_t *zCmd, /* The command that the child process will run */
179178
HANDLE hIn, /* Standard input */
180179
HANDLE hOut, /* Standard output */

0 commit comments

Comments
 (0)