xref: /original-bsd/usr.bin/struct/struct/3.test.c (revision e1db577d)
1 #ifndef lint
2 static char sccsid[] = "@(#)3.test.c	4.1	(Berkeley)	02/11/83";
3 #endif not lint
4 
5 #include <stdio.h>
6 #
7 /* for testing only */
8 #include "def.h"
9 
10 testreach()
11 	{
12 	VERT v;
13 	for (v = 0; v < nodenum; ++v)
14 		fprintf(stderr,"REACH(%d) = %d\n",v,REACH(v));
15 	}
16