This commit is contained in:
Your Name 2023-11-05 18:45:11 +03:00
parent dd6b6e771b
commit 69fe627457
3 changed files with 2 additions and 2 deletions

0
build.sh Normal file → Executable file
View File

View File

@ -14,5 +14,5 @@ const char *libs[] = {
};
#define CFLAGS "-Wall -Wextra -pedantic -Os -s -I ../libmu"
#define CC "cc"
#define CC "tcc"
#endif

View File

@ -16,7 +16,7 @@ void print(double size, const char *filename) {
char c = 0;
if (h_flag) {
if (size < 1048576) {
if (size < 1048576 && !m_flag) {
size = size / 1024;
c = 'K';
}