diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-01-26 02:04:49 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-01-26 02:04:49 +0000 |
commit | dff9d54e32a713d34af85e75c05412ce25478f46 (patch) | |
tree | 4b0804b2a703e5fae838ca89cc3167fc801905e2 /networking/wget.c | |
parent | 5307eca7de2caf1d4efb8ee3e802a69a1a076376 (diff) | |
download | busybox-w32-dff9d54e32a713d34af85e75c05412ce25478f46.tar.gz busybox-w32-dff9d54e32a713d34af85e75c05412ce25478f46.tar.bz2 busybox-w32-dff9d54e32a713d34af85e75c05412ce25478f46.zip |
Add errno.h
Diffstat (limited to 'networking/wget.c')
-rw-r--r-- | networking/wget.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/networking/wget.c b/networking/wget.c index 419435362..2c38cb08e 100644 --- a/networking/wget.c +++ b/networking/wget.c | |||
@@ -16,6 +16,7 @@ | |||
16 | 16 | ||
17 | #include "busybox.h" | 17 | #include "busybox.h" |
18 | #include <stdio.h> | 18 | #include <stdio.h> |
19 | #include <errno.h> | ||
19 | #include <stdlib.h> | 20 | #include <stdlib.h> |
20 | #include <unistd.h> | 21 | #include <unistd.h> |
21 | #include <ctype.h> | 22 | #include <ctype.h> |
@@ -520,7 +521,7 @@ progressmeter(int flag) | |||
520 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 521 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
521 | * SUCH DAMAGE. | 522 | * SUCH DAMAGE. |
522 | * | 523 | * |
523 | * $Id: wget.c,v 1.21 2001/01/24 20:28:35 andersen Exp $ | 524 | * $Id: wget.c,v 1.22 2001/01/26 02:04:49 andersen Exp $ |
524 | */ | 525 | */ |
525 | 526 | ||
526 | 527 | ||