aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/yacc/warshall.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/yacc/warshall.c')
-rw-r--r--usr.bin/yacc/warshall.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/usr.bin/yacc/warshall.c b/usr.bin/yacc/warshall.c
index 4672244e3681..1ac491966549 100644
--- a/usr.bin/yacc/warshall.c
+++ b/usr.bin/yacc/warshall.c
@@ -35,11 +35,14 @@
*/
#ifndef lint
-static char sccsid[] = "@(#)warshall.c 5.4 (Berkeley) 5/24/93";
+static char const sccsid[] = "@(#)warshall.c 5.4 (Berkeley) 5/24/93";
#endif /* not lint */
#include "defs.h"
+static void transitive_closure __P((unsigned *, int));
+
+static void
transitive_closure(R, n)
unsigned *R;
int n;
@@ -92,6 +95,7 @@ int n;
}
}
+void
reflexive_transitive_closure(R, n)
unsigned *R;
int n;