From cb41c2e83b9e9997b9737d7061d53f7c11a463a8 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Mon, 22 Nov 1999 07:41:00 +0000 Subject: Bug fixes --- dd.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'dd.c') diff --git a/dd.c b/dd.c index 6494857..a2dc1c3 100644 --- a/dd.c +++ b/dd.c @@ -29,10 +29,15 @@ #include "internal.h" +#include #include #include #include +#if (__GLIBC__ == 2) && (__GLIBC_MINOR__ >= 1) #include +#else +typedef unsigned long long int uintmax_t; +#endif static const char dd_usage[] = "dd [if=name] [of=name] [bs=n] [count=n]\n\n" -- cgit v1.1