Deleted Added
full compact
34c34
< * $FreeBSD: head/bin/dd/dd.h 273734 2014-10-27 11:38:17Z pi $
---
> * $FreeBSD: head/bin/dd/dd.h 273743 2014-10-27 17:39:37Z pi $
41,43c41,44
< ssize_t dbcnt; /* current buffer byte count */
< ssize_t dbrcnt; /* last read byte count */
< ssize_t dbsz; /* block size */
---
> /* XXX ssize_t? */
> size_t dbcnt; /* current buffer byte count */
> size_t dbrcnt; /* last read byte count */
> size_t dbsz; /* block size */
59,65c60,66
< size_t in_full; /* # of full input blocks */
< size_t in_part; /* # of partial input blocks */
< size_t out_full; /* # of full output blocks */
< size_t out_part; /* # of partial output blocks */
< size_t trunc; /* # of truncated records */
< size_t swab; /* # of odd-length swab blocks */
< size_t bytes; /* # of bytes written */
---
> uintmax_t in_full; /* # of full input blocks */
> uintmax_t in_part; /* # of partial input blocks */
> uintmax_t out_full; /* # of full output blocks */
> uintmax_t out_part; /* # of partial output blocks */
> uintmax_t trunc; /* # of truncated records */
> uintmax_t swab; /* # of odd-length swab blocks */
> uintmax_t bytes; /* # of bytes written */