1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-07 02:42:48 +03:00

Fix some pointless warnings from overly-pedantic compilers. (CVS 3048)

FossilOrigin-Name: b922c8e45f9a7799583d8b42875b27032fd71422
This commit is contained in:
drh
2006-01-31 19:31:43 +00:00
parent 5e6078bdba
commit 0850b5374c
6 changed files with 17 additions and 18 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.331 2006/01/24 16:37:58 danielk1977 Exp $
** $Id: main.c,v 1.332 2006/01/31 19:31:44 drh Exp $
*/
#include "sqliteInt.h"
#include "os.h"
@@ -29,7 +29,6 @@ const int sqlite3one = 1;
/*
** The version of the library
*/
const char rcsid3[] = "@(#) \044Id: SQLite version " SQLITE_VERSION " $";
const char sqlite3_version[] = SQLITE_VERSION;
const char *sqlite3_libversion(void){ return sqlite3_version; }
int sqlite3_libversion_number(void){ return SQLITE_VERSION_NUMBER; }