10 lines
176 B
C
10 lines
176 B
C
|
#include "test-tool.h"
|
||
|
#include "git-compat-util.h"
|
||
|
#include "thread-utils.h"
|
||
|
|
||
|
int cmd__online_cpus(int argc, const char **argv)
|
||
|
{
|
||
|
printf("%d\n", online_cpus());
|
||
|
return 0;
|
||
|
}
|