c033cc1508
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
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;
|
|
}
|