summaryrefslogtreecommitdiff
path: root/usr.bin/progress
diff options
context:
space:
mode:
authorhubertf <hubertf@NetBSD.org>2007-02-07 15:21:21 +0000
committerhubertf <hubertf@NetBSD.org>2007-02-07 15:21:21 +0000
commit79b63fa656fdebf557bb815cb7486e103c3d6306 (patch)
tree69bee23a118747f3fdc490767299f78f84c7fdfa /usr.bin/progress
parent6357560bab4d2ed743a65bbb9054f9172bb1b27c (diff)
#include inttypes.h, for strtoimax(3).
Suggested by Slava Semushin <slava.semushin@gmail.com> in private email.
Diffstat (limited to 'usr.bin/progress')
-rw-r--r--usr.bin/progress/progress.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/progress/progress.c b/usr.bin/progress/progress.c
index fbec39baf6a..79076f9eaa4 100644
--- a/usr.bin/progress/progress.c
+++ b/usr.bin/progress/progress.c
@@ -1,4 +1,4 @@
-/* $NetBSD: progress.c,v 1.13 2007/02/07 14:06:57 hubertf Exp $ */
+/* $NetBSD: progress.c,v 1.14 2007/02/07 15:21:21 hubertf Exp $ */
/*-
* Copyright (c) 2003 The NetBSD Foundation, Inc.
@@ -34,7 +34,7 @@
#include <sys/cdefs.h>
#ifndef lint
-__RCSID("$NetBSD: progress.c,v 1.13 2007/02/07 14:06:57 hubertf Exp $");
+__RCSID("$NetBSD: progress.c,v 1.14 2007/02/07 15:21:21 hubertf Exp $");
#endif /* not lint */
#include <sys/types.h>
@@ -51,6 +51,7 @@ __RCSID("$NetBSD: progress.c,v 1.13 2007/02/07 14:06:57 hubertf Exp $");
#include <fcntl.h>
#include <glob.h>
#include <signal.h>
+#include <inttypes.h>
#include <limits.h>
#include <netdb.h>
#include <stdio.h>