Clean up <inttypes.h> header inclusions

In both cases we can go with the slightly leaner <stdint.h> header
include since we aren't using the print macros.

Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
Dan McGee 2012-01-06 16:09:19 -06:00
parent d59324c8ff
commit b7ecff160e
2 changed files with 2 additions and 3 deletions

View File

@ -26,8 +26,7 @@
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <inttypes.h> /* int64_t */
#include <stdint.h> /* intmax_t */
#include <stdint.h> /* int64_t */
/* libarchive */
#include <archive.h>

View File

@ -27,7 +27,7 @@
extern "C" {
#endif
#include <inttypes.h> /* int64_t */
#include <stdint.h> /* int64_t */
#include <sys/types.h> /* off_t */
#include <stdarg.h> /* va_list */