Clean up some code

This commit is contained in:
Justine Tunney 2023-10-11 11:45:31 -07:00
parent ec3275179f
commit 285c565051
No known key found for this signature in database
GPG key ID: BE714B4575D6E328
33 changed files with 122 additions and 382 deletions

View file

@ -10,7 +10,7 @@
#include "libc/runtime/sysconf.h"
#include "libc/stdio/stdio.h"
#define SYSCONF(NAME) printf("%s %,ld\n", #NAME, sysconf(NAME))
#define SYSCONF(NAME) printf("%-24s %,ld\n", #NAME, sysconf(NAME))
int main(int argc, char *argv[]) {
SYSCONF(_SC_CLK_TCK);