aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2014-01-02 14:54:46 +0000
committerRon Yorston <rmy@pobox.com>2014-01-02 14:54:46 +0000
commitf1455f148d8ad298ee274bc69b17fcfacd14cab4 (patch)
tree15905951dd1d377b41aa835353c0c7801bc40c93
parente7878f61a5d93d604bfa621c4f799ffe839742df (diff)
downloadbusybox-w32-f1455f148d8ad298ee274bc69b17fcfacd14cab4.tar.gz
busybox-w32-f1455f148d8ad298ee274bc69b17fcfacd14cab4.tar.bz2
busybox-w32-f1455f148d8ad298ee274bc69b17fcfacd14cab4.zip
Define bb_got_signal for use in tar on mingw32
-rw-r--r--archival/tar.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/archival/tar.c b/archival/tar.c
index 2909eca1b..d7938c09e 100644
--- a/archival/tar.c
+++ b/archival/tar.c
@@ -966,6 +966,10 @@ static const char tar_longopts[] ALIGN1 =
966 ; 966 ;
967#endif 967#endif
968 968
969#if ENABLE_PLATFORM_MINGW32
970smallint bb_got_signal;
971#endif
972
969int tar_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; 973int tar_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
970int tar_main(int argc UNUSED_PARAM, char **argv) 974int tar_main(int argc UNUSED_PARAM, char **argv)
971{ 975{