makefile instead of shell scripts

This commit is contained in:
cozis
2022-05-08 15:51:59 +02:00
parent 5b016e5b2f
commit 96921385fa
6 changed files with 30 additions and 7 deletions
+3
View File
@@ -439,6 +439,9 @@ static void buff_printf(buff_t *buff, const char *fmt, ...)
int k = vsnprintf(buffer, n+1, fmt, va2);
assert(k >= 0 && k == n);
(void) k; // If asserts are deactivated by defining
// NDEBUG, the compiler complains because
// k is unused.
}
assert(buffer[n] == '\0');