Bug fixes

This commit is contained in:
Eric Andersen
1999-11-22 07:41:00 +00:00
parent 5d44d1fda5
commit cb41c2e83b
7 changed files with 35 additions and 23 deletions

5
dd.c
View File

@ -29,10 +29,15 @@
#include "internal.h"
#include <features.h>
#include <stdio.h>
#include <fcntl.h>
#include <errno.h>
#if (__GLIBC__ == 2) && (__GLIBC_MINOR__ >= 1)
#include <inttypes.h>
#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"