#include <sys/pstat.h>
main()
{
	struct pst_static buf;
	pstat(PSTAT_STATIC, &buf, sizeof(buf), 0, 0);
	printf("Physical RAM = %ldMB\n", buf.physical_memory/256);
}