diff options
| author | Greg Hudson <ghudson@mit.edu> | 2014-02-01 15:20:08 -0500 |
|---|---|---|
| committer | Greg Hudson <ghudson@mit.edu> | 2014-02-26 16:15:19 -0500 |
| commit | 17e205070745e4712d40eed32d92d02edb47009f (patch) | |
| tree | 7b84dc2f536d8c73da8155a186fbbc23c3b88dc1 /src/plugins | |
| parent | 4c376a3776aed0fb19b761406eaa2e0516ff6735 (diff) | |
| download | krb5-17e205070745e4712d40eed32d92d02edb47009f.tar.gz krb5-17e205070745e4712d40eed32d92d02edb47009f.tar.xz krb5-17e205070745e4712d40eed32d92d02edb47009f.zip | |
Assume <stdint.h> and fixed-width types
Make unconditional use of <stdint.h> and fixed-width types such as
uint32_t. k5-plugin.h doesn't use any special integer types, so
remove the conditional include block there. Nothing uses
INT64_FMT/UINT64_FMT, so leave those out of k5-platform.h for now.
Diffstat (limited to 'src/plugins')
| -rw-r--r-- | src/plugins/kdb/db2/libdb2/include/db-int.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/plugins/kdb/db2/libdb2/include/db-int.h b/src/plugins/kdb/db2/libdb2/include/db-int.h index 8329ee3d05..0dcbf40b65 100644 --- a/src/plugins/kdb/db2/libdb2/include/db-int.h +++ b/src/plugins/kdb/db2/libdb2/include/db-int.h @@ -132,13 +132,7 @@ #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> |
