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

Rig the ident string so that it is not changed by RCS on checkin. (CVS 692)

FossilOrigin-Name: 773d36c8d94bdcd0c78401282e48432ddd9b61d6
This commit is contained in:
drh
2002-07-19 19:03:41 +00:00
parent 26b3e1bc06
commit 096c497eb3
3 changed files with 9 additions and 9 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.91 2002/07/19 18:52:41 drh Exp $
** $Id: main.c,v 1.92 2002/07/19 19:03:42 drh Exp $
*/
#include "sqliteInt.h"
#include "os.h"
@@ -302,7 +302,7 @@ int sqliteInit(sqlite *db, char **pzErrMsg){
/*
** The version of the library
*/
static const char rcsid[] = "@(#) $Id: main.c,v 1.91 2002/07/19 18:52:41 drh Exp $";
const char rcsid[] = "@(#) \044Id: SQLite version " SQLITE_VERSION " $";
const char sqlite_version[] = SQLITE_VERSION;
/*