summaryrefslogtreecommitdiffstats
path: root/src/util/db2/include/db-int.h
diff options
context:
space:
mode:
authorKen Raeburn <raeburn@mit.edu>2002-09-05 12:31:57 +0000
committerKen Raeburn <raeburn@mit.edu>2002-09-05 12:31:57 +0000
commit28423f6a2037f0275148b2539e23ef457a63f93b (patch)
tree6ae2fc83cd6e1bb1c54dce0b1125f28249979b85 /src/util/db2/include/db-int.h
parentcd63e4d1453e38fec8d7480397c0da6c019f748e (diff)
downloadkrb5-28423f6a2037f0275148b2539e23ef457a63f93b.tar.gz
krb5-28423f6a2037f0275148b2539e23ef457a63f93b.tar.xz
krb5-28423f6a2037f0275148b2539e23ef457a63f93b.zip
use stdint.h and inttypes.h if available
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@14833 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/util/db2/include/db-int.h')
-rw-r--r--src/util/db2/include/db-int.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/util/db2/include/db-int.h b/src/util/db2/include/db-int.h
index 8ce1b15ba4..2c21fb207a 100644
--- a/src/util/db2/include/db-int.h
+++ b/src/util/db2/include/db-int.h
@@ -61,6 +61,13 @@
#include <fcntl.h>
#include <stdio.h>
#include <errno.h>
+#ifdef HAVE_STDINT_H
+#include <stdint.h>
+#endif
+#ifdef HAVE_INTTYPES_H
+/* Tru64 5.1: int8_t is defined here, and stdint.h doesn't exist. */
+#include <inttypes.h>
+#endif
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/param.h>