diff options
author | Rob Landley <rob@landley.net> | 2006-05-28 01:56:08 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-05-28 01:56:08 +0000 |
commit | 81dab2cf834cb5369bd70feaf4ff45363dba12dd (patch) | |
tree | e89f8ea7219f26fd8b9b4feb1102cbf567099349 /coreutils/cksum.c | |
parent | 0fbe7ddbdda3917dd23004b7f88f772a63300f0c (diff) | |
download | busybox-w32-81dab2cf834cb5369bd70feaf4ff45363dba12dd.tar.gz busybox-w32-81dab2cf834cb5369bd70feaf4ff45363dba12dd.tar.bz2 busybox-w32-81dab2cf834cb5369bd70feaf4ff45363dba12dd.zip |
Fix hdparm to use PRIu64 instead of typecasting to long long (which is 128 bits
on 64 bit platforms), and move #include <inttypes.h> to libbb.h.
Diffstat (limited to 'coreutils/cksum.c')
-rw-r--r-- | coreutils/cksum.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/coreutils/cksum.c b/coreutils/cksum.c index 194ea7d2a..1396a5d5b 100644 --- a/coreutils/cksum.c +++ b/coreutils/cksum.c | |||
@@ -9,7 +9,6 @@ | |||
9 | #include <stdio.h> | 9 | #include <stdio.h> |
10 | #include <unistd.h> | 10 | #include <unistd.h> |
11 | #include <fcntl.h> | 11 | #include <fcntl.h> |
12 | #include <inttypes.h> | ||
13 | #include "busybox.h" | 12 | #include "busybox.h" |
14 | 13 | ||
15 | int cksum_main(int argc, char **argv) { | 14 | int cksum_main(int argc, char **argv) { |