2021-08-12 07:42:14 +00:00
|
|
|
#if 0
|
|
|
|
/*─────────────────────────────────────────────────────────────────╗
|
|
|
|
│ To the extent possible under law, Justine Tunney has waived │
|
|
|
|
│ all copyright and related or neighboring rights to this file, │
|
|
|
|
│ as it is written in the following disclaimers: │
|
|
|
|
│ • http://unlicense.org/ │
|
|
|
|
│ • http://creativecommons.org/publicdomain/zero/1.0/ │
|
|
|
|
╚─────────────────────────────────────────────────────────────────*/
|
|
|
|
#endif
|
2022-09-09 18:30:33 +00:00
|
|
|
#include "libc/intrin/kprintf.h"
|
2022-10-12 04:06:27 +00:00
|
|
|
#include "libc/runtime/runtime.h"
|
2021-08-12 07:42:14 +00:00
|
|
|
|
2022-09-09 18:30:33 +00:00
|
|
|
int main() {
|
2022-10-12 04:06:27 +00:00
|
|
|
kprintf("%d\n", _getcpucount());
|
2021-08-12 07:42:14 +00:00
|
|
|
}
|