diff options
author | drh <drh@noemail.net> | 2008-04-28 12:54:15 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2008-04-28 12:54:15 +0000 |
commit | 06af763e30f1a9e98eaa10263e990dbeabce1064 (patch) | |
tree | 973359aae2e26f1f2546ed268241aa018038e1b9 /src | |
parent | 460e290006696d74ba924d04004913c6cc2674cd (diff) | |
download | sqlite-06af763e30f1a9e98eaa10263e990dbeabce1064.tar.gz sqlite-06af763e30f1a9e98eaa10263e990dbeabce1064.zip |
Restore the #include of stdint.h removed in (5051). (CVS 5056)
FossilOrigin-Name: e96e8b9b4137c3ea239674683cf9fd8682851908
Diffstat (limited to 'src')
-rw-r--r-- | src/sqliteInt.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 01a070b96..d52a04cf1 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -11,7 +11,7 @@ ************************************************************************* ** Internal interface definitions for SQLite. ** -** @(#) $Id: sqliteInt.h,v 1.696 2008/04/27 18:40:12 drh Exp $ +** @(#) $Id: sqliteInt.h,v 1.697 2008/04/28 12:54:15 drh Exp $ */ #ifndef _SQLITEINT_H_ #define _SQLITEINT_H_ @@ -36,6 +36,16 @@ #define _GNU_SOURCE /* +** Include standard header files as necessary +*/ +#ifdef HAVE_STDINT_H +#include <stdint.h> +#endif +#ifdef HAVE_INTTYPES_H +#include <inttypes.h> +#endif + +/* ** A macro used to aid in coverage testing. When doing coverage ** testing, the condition inside the argument must be evaluated ** both true and false in order to get full branch coverage. |