1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-05 15:55:57 +03:00

Patch around compilers that do not support "long long int". (CVS 1656)

FossilOrigin-Name: d98b1502e2947d24ab9f4a5d2e5b9a95dde92faf
This commit is contained in:
drh
2004-06-22 12:13:55 +00:00
parent e302663615
commit efad99959b
8 changed files with 50 additions and 43 deletions

View File

@@ -14,7 +14,7 @@
** other files are for internal use by SQLite and should not be
** accessed by users of the library.
**
** $Id: main.c,v 1.232 2004/06/21 08:18:52 danielk1977 Exp $
** $Id: main.c,v 1.233 2004/06/22 12:13:55 drh Exp $
*/
#include "sqliteInt.h"
#include "os.h"
@@ -436,7 +436,7 @@ static int nocaseCollatingFunc(
/*
** Return the ROWID of the most recent insert
*/
long long int sqlite3_last_insert_rowid(sqlite *db){
sqlite_int64 sqlite3_last_insert_rowid(sqlite *db){
return db->lastRowid;
}