1
0
mirror of https://github.com/git/git synced 2024-07-05 00:58:49 +00:00
git/t/helper/test-online-cpus.c

10 lines
190 B
C
Raw Normal View History

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