summaryrefslogtreecommitdiffstats
path: root/tools/tools/ncpus/ncpus.c
blob: f0d3a6bcd61df97544f3431e12c18666c43da0ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* $FreeBSD$ */

#include <stdio.h>

extern int acpi_detect(void);
extern int biosmptable_detect(void);

int
main(int argc, char *argv[])
{
	printf("acpi: %d\n", acpi_detect());
	printf("mptable: %d\n", biosmptable_detect());
	return 0;
}
OpenPOWER on IntegriCloud