This file is indexed.

/usr/share/doc/hp48cc/examples/fact.hpc is in hp48cc 1.3-5.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

1
2
3
4
5
6
7
// fact.hpc -- Calculate the factorial -*- C -*-

declare fact(i) : s(1) {
	for (; i > 1; --i)
		s *= i;
	s;		// Return value
}