Deleted Added
full compact
28c28
< * $FreeBSD: head/usr.bin/systat/convtbl.h 164672 2006-11-27 16:14:32Z yar $
---
> * $FreeBSD: head/usr.bin/systat/convtbl.h 164673 2006-11-27 16:23:09Z yar $
37,42d36
< #define BITS (1)
< #define BYTES (1)
< #define KILO (1024LL)
< #define MEGA (KILO * 1024)
< #define GIGA (MEGA * 1024)
<
55,66d48
< #define BIT (8)
< #define BYTE (1)
<
< struct convtbl {
< uintmax_t mul;
< uintmax_t scale;
< const char *str;
< const char *name;
< };
<
< extern struct convtbl convtbl[];
<