1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-11 01:42:22 +03:00

Fix the amalgamation generator so that all non-API functions have file scope. (CVS 3958)

FossilOrigin-Name: e9f56ead0514f3eac75807ea710c1f035b8add4f
This commit is contained in:
drh
2007-05-08 20:37:38 +00:00
parent 52d19f65e3
commit ee85813c94
16 changed files with 75 additions and 68 deletions

View File

@@ -12,7 +12,7 @@
**
** This file contains code used to implement incremental BLOB I/O.
**
** $Id: vdbeblob.c,v 1.9 2007/05/05 18:39:25 drh Exp $
** $Id: vdbeblob.c,v 1.10 2007/05/08 20:37:40 drh Exp $
*/
#include "sqliteInt.h"
@@ -247,7 +247,7 @@ int sqlite3_blob_close(sqlite3_blob *pBlob){
}
int blobReadWrite(
static int blobReadWrite(
sqlite3_blob *pBlob,
void *z,
int n,