/* See LICENSE file for copyright and license details. */
-#include <errno.h>
#include <stdio.h>
#include <string.h>
return NULL;
}
- return fmt_human_10(freq * 1000);
+ return fmt_human(freq * 1000, 1000);
}
const char *
return NULL;
}
- return fmt_human_10((size_t)freq * 1000 * 1000);
+ return fmt_human((size_t)freq * 1000 * 1000, 1000);
}
const char *