]> git.ipfire.org Git - thirdparty/libarchive.git/commitdiff
Avoid build error on Visual Studio 10.
authorMichihiro NAKAJIMA <ggcueroad@gmail.com>
Tue, 15 Dec 2009 22:52:33 +0000 (17:52 -0500)
committerMichihiro NAKAJIMA <ggcueroad@gmail.com>
Tue, 15 Dec 2009 22:52:33 +0000 (17:52 -0500)
SVN-Revision: 1738

cpio/cpio.c
libarchive/test/test.h
tar/read.c
tar/util.c
tar/write.c

index 5fce1f7d3b65015494cceace5f1a2831f58e4bc7..6947bf60c0013fa043350cd1f5adf8158d4ad744 100644 (file)
@@ -56,6 +56,9 @@ __FBSDID("$FreeBSD: src/usr.bin/cpio/cpio.c,v 1.15 2008/12/06 07:30:40 kientzle
 #ifdef HAVE_STDARG_H
 #include <stdarg.h>
 #endif
+#ifdef HAVE_STDINT_H
+#include <stdint.h>
+#endif
 #include <stdio.h>
 #ifdef HAVE_STDLIB_H
 #include <stdlib.h>
index 87071c041fe245b8490304ecd9f7f887d060c821..d02d4f96e332c73f01a55e2a44f3e58b30f3a95d 100644 (file)
@@ -62,6 +62,9 @@
 #ifdef HAVE_IO_H
 #include <io.h>
 #endif
+#ifdef HAVE_STDINT_H
+#include <stdint.h>
+#endif
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
index 0f3c18526b6e0c3a235463e1a71e2d4e1a13a2a4..aaaacac0dcaa2c82567d31dd8dbd6f3f2f513ef9 100644 (file)
@@ -48,6 +48,9 @@ __FBSDID("$FreeBSD: src/usr.bin/tar/read.c,v 1.40 2008/08/21 06:41:14 kientzle E
 #ifdef HAVE_PWD_H
 #include <pwd.h>
 #endif
+#ifdef HAVE_STDINT_H
+#include <stdint.h>
+#endif
 #include <stdio.h>
 #ifdef HAVE_STDLIB_H
 #include <stdlib.h>
index 0e66f3a15ac495866265a1629a19bbace8735a53..23462bdf2e7d13503fdc5968502abd2d437d8be6 100644 (file)
@@ -42,6 +42,9 @@ __FBSDID("$FreeBSD: src/usr.bin/tar/util.c,v 1.23 2008/12/15 06:00:25 kientzle E
 #ifdef HAVE_STDARG_H
 #include <stdarg.h>
 #endif
+#ifdef HAVE_STDINT_H
+#include <stdint.h>
+#endif
 #include <stdio.h>
 #ifdef HAVE_STDLIB_H
 #include <stdlib.h>
index 8e6c5f04f52e16d9081dc9c153d68fed56218fe6..3092a8dbc3c74db8a3f5de2c9707fc3bef19f4c7 100644 (file)
@@ -70,6 +70,9 @@ __FBSDID("$FreeBSD: src/usr.bin/tar/write.c,v 1.79 2008/11/27 05:49:52 kientzle
 #ifdef HAVE_PWD_H
 #include <pwd.h>
 #endif
+#ifdef HAVE_STDINT_H
+#include <stdint.h>
+#endif
 #include <stdio.h>
 #ifdef HAVE_STDLIB_H
 #include <stdlib.h>