NetBSD/usr.bin/hexdump
apb 53ee7761e4 Integer values, no matter what their width, are cast to int64_t or
uint64_t for printing.  Because of this, parse.c:rewrite() should use
PRI[diouxX]64 as the printf format; the previous revision which used
"lld" and friends was a temporary measure.  We assume that PRId64 ends
with 'd', PRIx64 ends with 'x', etc.

In display.c:display(), change some u_intNN_t types to C99 standard
uintNN_t types, and consistently cast to [u]int64_t when printing
integer values (even in two cases where it's not really necessary but it
makes the code look more consistent).
2009-01-18 21:34:32 +00:00
..
Makefile
conv.c
display.c Integer values, no matter what their width, are cast to int64_t or 2009-01-18 21:34:32 +00:00
hexdump.1
hexdump.c
hexdump.h
hexsyntax.c
od.1 Support -the "-A addressformat" flag for od(1), from FreeBSD. 2008-09-03 16:32:57 +00:00
odsyntax.c Support -the "-A addressformat" flag for od(1), from FreeBSD. 2008-09-03 16:32:57 +00:00
parse.c Integer values, no matter what their width, are cast to int64_t or 2009-01-18 21:34:32 +00:00