summaryrefslogtreecommitdiffstats
path: root/bin/dd/extern.h
diff options
context:
space:
mode:
authormarkm <markm@FreeBSD.org>2003-02-27 18:04:54 +0000
committermarkm <markm@FreeBSD.org>2003-02-27 18:04:54 +0000
commit5736aa9039e290655a2484d65e3da9ab4033863d (patch)
treed203dbd769dc431349601f5d03ed08b57352472d /bin/dd/extern.h
parent5c7b43870b95aef3fdb86f420e387bc30f7fb1d5 (diff)
downloadFreeBSD-src-5736aa9039e290655a2484d65e3da9ab4033863d.zip
FreeBSD-src-5736aa9039e290655a2484d65e3da9ab4033863d.tar.gz
WARNS=4 fixes. This would be WARNS=9 if we were -std=99 instead of
-ansi, due to 'long long'. Reviewed by: green (slightly earlier version)
Diffstat (limited to 'bin/dd/extern.h')
-rw-r--r--bin/dd/extern.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/bin/dd/extern.h b/bin/dd/extern.h
index 8bbb357..e835462 100644
--- a/bin/dd/extern.h
+++ b/bin/dd/extern.h
@@ -38,8 +38,6 @@
* $FreeBSD$
*/
-#include <sys/cdefs.h>
-
void block(void);
void block_close(void);
void dd_out(int);
@@ -57,10 +55,10 @@ void unblock_close(void);
extern IO in, out;
extern STAT st;
extern void (*cfunc)(void);
-extern u_quad_t cpy_cnt;
+extern uintmax_t cpy_cnt;
extern size_t cbsz;
extern u_int ddflags;
-extern quad_t files_cnt;
+extern uintmax_t files_cnt;
extern const u_char *ctab;
extern const u_char a2e_32V[], a2e_POSIX[];
extern const u_char e2a_32V[], e2a_POSIX[];
OpenPOWER on IntegriCloud