about summary refs log tree commit diff
path: root/third_party/git/t/helper/test-online-cpus.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;
}