Restore the #include of stdint.h removed in (5051). (CVS 5056)

FossilOrigin-Name: e96e8b9b4137c3ea239674683cf9fd8682851908
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index 01a070b..d52a04c 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.