1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-12 13:01:09 +03:00

Make sure the vdbeInt.h file is not #included multiple times. Ticket #2194. (CVS 3608)

FossilOrigin-Name: 93edd3b0565d08383b3034c57f221073fde6de4b
This commit is contained in:
drh
2007-01-26 21:08:04 +00:00
parent 23a4d14e79
commit 4e78be693c
3 changed files with 11 additions and 7 deletions

View File

@@ -15,6 +15,8 @@
** 6000 lines long) it was split up into several smaller files and
** this header information was factored out.
*/
#ifndef _VDBEINT_H_
#define _VDBEINT_H_
/*
** intToKey() and keyToInt() used to transform the rowid. But with
@@ -403,3 +405,5 @@ void sqlite3VdbeFifoInit(Fifo*);
int sqlite3VdbeFifoPush(Fifo*, i64);
int sqlite3VdbeFifoPop(Fifo*, i64*);
void sqlite3VdbeFifoClear(Fifo*);
#endif /* !defined(_VDBEINT_H_) */