mirror of
https://github.com/sqlite/sqlite.git
synced 2025-07-30 19:03:16 +03:00
Add static ident strings (such as picked up by the RCS "ident" command)
containing the library version number. (CVS 689) FossilOrigin-Name: 712ee3914e988f0077e9a3d6170ff8db496a9600
This commit is contained in:
@ -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.89 2002/07/19 17:46:39 drh Exp $
|
||||
** $Id: main.c,v 1.90 2002/07/19 18:13:36 drh Exp $
|
||||
*/
|
||||
#include "sqliteInt.h"
|
||||
#include "os.h"
|
||||
@ -302,6 +302,7 @@ int sqliteInit(sqlite *db, char **pzErrMsg){
|
||||
/*
|
||||
** The version of the library
|
||||
*/
|
||||
static const char rcsid[] = "@(#) $Id: main.c,v 1.90 2002/07/19 18:13:36 drh Exp $";
|
||||
const char sqlite_version[] = SQLITE_VERSION;
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user