From 2f8ab38300aecf93354cbcbcf42b5ef86db1de7a Mon Sep 17 00:00:00 2001 From: yar Date: Mon, 27 Nov 2006 16:23:09 +0000 Subject: Stop exposing things that can be private to convtbl.c. --- usr.bin/systat/convtbl.c | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) (limited to 'usr.bin/systat/convtbl.c') diff --git a/usr.bin/systat/convtbl.c b/usr.bin/systat/convtbl.c index 79005ce..0e16de6 100644 --- a/usr.bin/systat/convtbl.c +++ b/usr.bin/systat/convtbl.c @@ -33,7 +33,23 @@ #include #include "convtbl.h" -struct convtbl convtbl[] = { +#define BIT (8) +#define BYTE (1) + +#define BITS (1) +#define BYTES (1) +#define KILO (1024LL) +#define MEGA (KILO * 1024) +#define GIGA (MEGA * 1024) + +struct convtbl { + uintmax_t mul; + uintmax_t scale; + const char *str; + const char *name; +}; + +static struct convtbl convtbl[] = { /* mul, scale, str, name */ [SC_BYTE] = { BYTE, BYTES, "B", "byte" }, [SC_KILOBYTE] = { BYTE, KILO, "KB", "kbyte" }, -- cgit v1.1