diff options
author | drh <drh@noemail.net> | 2007-01-26 21:08:04 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2007-01-26 21:08:04 +0000 |
commit | 4e78be693c940780bf6bc1e858dcfdba9ba5c18e (patch) | |
tree | 4e2b8058a4cc3a6d954c58dabcde778ff58fd9e7 /src | |
parent | 23a4d14e79c20ff124e60bdf2c209495b49cfb45 (diff) | |
download | sqlite-4e78be693c940780bf6bc1e858dcfdba9ba5c18e.tar.gz sqlite-4e78be693c940780bf6bc1e858dcfdba9ba5c18e.zip |
Make sure the vdbeInt.h file is not #included multiple times. Ticket #2194. (CVS 3608)
FossilOrigin-Name: 93edd3b0565d08383b3034c57f221073fde6de4b
Diffstat (limited to 'src')
-rw-r--r-- | src/vdbeInt.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/vdbeInt.h b/src/vdbeInt.h index 71d162d72..d2f737c99 100644 --- a/src/vdbeInt.h +++ b/src/vdbeInt.h @@ -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_) */ |