#include "system.h"
#include "machine.h"
+void RTC PARAMS((unsigned *, int));
+
/* given n by n matrix of bits R, modify its contents
to be the transive closure of what was given. */
-void
-TC(R, n)
-unsigned *R;
-int n;
+static void
+TC (unsigned *R, int n)
{
register int rowsize;
register unsigned mask;
and then set all the bits on the diagonal of R. */
void
-RTC(R, n)
-unsigned *R;
-int n;
+RTC (unsigned *R, int n)
{
register int rowsize;
register unsigned mask;