]> git.ipfire.org Git - thirdparty/libarchive.git/commitdiff
Minor MinGW fixes.
authorCharles Wilson <cwilso11@gmail.com>
Tue, 21 Jul 2009 04:54:01 +0000 (00:54 -0400)
committerCharles Wilson <cwilso11@gmail.com>
Tue, 21 Jul 2009 04:54:01 +0000 (00:54 -0400)
* bsdtar_windows.h: ensure struct bsdtar and struct archive are forward
declared before declaring functions that take pointers to those types.

SVN-Revision: 1260

tar/bsdtar_windows.h

index 1f2ce8b4a49c04a4398c6386b39fe9730a634948..fa59be8f7b5503b87445e51666c4de174194863c 100644 (file)
@@ -45,6 +45,9 @@ struct direct {
 extern "C" {
 #endif
 
+struct bsdtar;
+struct archive;
+
 extern DIR     *opendir(const char *path);
 extern struct dirent *readdir(DIR *dirp);
 extern int     closedir(DIR *dirp);