diff options
author | danielk1977 <danielk1977@noemail.net> | 2004-06-22 11:29:02 +0000 |
---|---|---|
committer | danielk1977 <danielk1977@noemail.net> | 2004-06-22 11:29:02 +0000 |
commit | e3026636159753d40820aff2c21923f62fee9a1b (patch) | |
tree | 1b9c3c1d6983c8e3c80efa28d6f849e2c66a079e /src/sqliteInt.h | |
parent | 369340af3de293aedebf1227b5218a9e01b3826e (diff) | |
download | sqlite-e3026636159753d40820aff2c21923f62fee9a1b.tar.gz sqlite-e3026636159753d40820aff2c21923f62fee9a1b.zip |
Add os_test.c. Not activated yet. (CVS 1655)
FossilOrigin-Name: d16b863849d1aa887fe403e25153b1e9df6b837e
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 3619855e1..a2a818f83 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -11,8 +11,11 @@ ************************************************************************* ** Internal interface definitions for SQLite. ** -** @(#) $Id: sqliteInt.h,v 1.297 2004/06/21 07:36:32 danielk1977 Exp $ +** @(#) $Id: sqliteInt.h,v 1.298 2004/06/22 11:29:02 danielk1977 Exp $ */ +#ifndef _SQLITEINT_H_ +#define _SQLITEINT_H_ + #include "config.h" #include "sqlite3.h" #include "hash.h" @@ -1397,3 +1400,5 @@ void sqlite3ValueSetStr(sqlite3_value*, int, const void *,u8, void(*)(void*)); void sqlite3ValueFree(sqlite3_value*); sqlite3_value *sqlite3ValueNew(); sqlite3_value *sqlite3GetTransientValue(sqlite *db); + +#endif |