diff options
author | drh <> | 2024-10-28 22:35:32 +0000 |
---|---|---|
committer | drh <> | 2024-10-28 22:35:32 +0000 |
commit | 8b3ba8eb5a87058363288aa31dd5e01dd8804356 (patch) | |
tree | 4db847d166595b116f8b41f52c638e23dc37d708 /src | |
parent | 173c113c5f12249e17155a6262601486d009cffa (diff) | |
download | sqlite-8b3ba8eb5a87058363288aa31dd5e01dd8804356.tar.gz sqlite-8b3ba8eb5a87058363288aa31dd5e01dd8804356.zip |
Enclose the generated "sqlite3.c" and "sqlite3.h" in a single big #ifdef so
that if they get truncated by more than a little whitespace, they will not
compile and the truncation can be easily detected.
FossilOrigin-Name: c3b624e2a903f0c975bc8b7288b98616a4a22b2a574738d1f578bfad1d6d8b91
Diffstat (limited to 'src')
-rw-r--r-- | src/sqlite.h.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sqlite.h.in b/src/sqlite.h.in index f91088a77..77d928024 100644 --- a/src/sqlite.h.in +++ b/src/sqlite.h.in @@ -10889,4 +10889,4 @@ int sqlite3_deserialize( #ifdef __cplusplus } /* End of the 'extern "C"' block */ #endif -#endif /* SQLITE3_H */ +/* #endif for SQLITE3_H will be added by mksqlite3.tcl */ |