diff options
author | drh <drh@noemail.net> | 2004-02-11 09:46:30 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2004-02-11 09:46:30 +0000 |
commit | bbd82df617ee94a0371e867a95cee007f4473bd8 (patch) | |
tree | 06f6f9a32dd4e4ae13675aa4f1e29aa07fdca9bc /src/sqliteInt.h | |
parent | 9eb9e26b82e5b973f81f4429f9e1978a058391e9 (diff) | |
download | sqlite-bbd82df617ee94a0371e867a95cee007f4473bd8.tar.gz sqlite-bbd82df617ee94a0371e867a95cee007f4473bd8.zip |
Refactor the interface to the randomness generator. (CVS 1224)
FossilOrigin-Name: f2bdccf4bb2f796aafb64c33e55f62a1794d750c
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 381b538e6..4b6402c82 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -11,7 +11,7 @@ ************************************************************************* ** Internal interface definitions for SQLite. ** -** @(#) $Id: sqliteInt.h,v 1.209 2004/01/16 15:55:38 drh Exp $ +** @(#) $Id: sqliteInt.h,v 1.210 2004/02/11 09:46:33 drh Exp $ */ #include "config.h" #include "sqlite.h" @@ -1151,8 +1151,7 @@ int sqliteFuncId(Token*); int sqliteExprResolveIds(Parse*, SrcList*, ExprList*, Expr*); int sqliteExprAnalyzeAggregates(Parse*, Expr*); Vdbe *sqliteGetVdbe(Parse*); -int sqliteRandomByte(void); -int sqliteRandomInteger(void); +void sqliteRandomness(int, void*); void sqliteRollbackAll(sqlite*); void sqliteCodeVerifySchema(Parse*, int); void sqliteBeginTransaction(Parse*, int); |