Deleted Added
full compact
warshall.c (87628) warshall.c (92922)
1/*
2 * Copyright (c) 1989 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Robert Paul Corbett.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 28 unchanged lines hidden (view full) ---

37#if 0
38#ifndef lint
39static char sccsid[] = "@(#)warshall.c 5.4 (Berkeley) 5/24/93";
40#endif
41#endif
42
43#include <sys/cdefs.h>
44#ifdef __FBSDID
1/*
2 * Copyright (c) 1989 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Robert Paul Corbett.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 28 unchanged lines hidden (view full) ---

37#if 0
38#ifndef lint
39static char sccsid[] = "@(#)warshall.c 5.4 (Berkeley) 5/24/93";
40#endif
41#endif
42
43#include <sys/cdefs.h>
44#ifdef __FBSDID
45__FBSDID("$FreeBSD: head/usr.bin/yacc/warshall.c 87628 2001-12-10 21:13:08Z dwmalone $");
45__FBSDID("$FreeBSD: head/usr.bin/yacc/warshall.c 92922 2002-03-22 01:42:45Z imp $");
46#endif
47
48#include "defs.h"
49
46#endif
47
48#include "defs.h"
49
50static void transitive_closure __P((unsigned *, int));
50static void transitive_closure(unsigned *, int);
51
52static void
53transitive_closure(R, n)
54unsigned *R;
55int n;
56{
57 int rowsize;
58 unsigned i;

--- 75 unchanged lines hidden ---
51
52static void
53transitive_closure(R, n)
54unsigned *R;
55int n;
56{
57 int rowsize;
58 unsigned i;

--- 75 unchanged lines hidden ---