blob: e4eecfbc8eada233a7e1e3198b2577af3f2ea967 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
$NetBSD: patch-ab,v 1.1.1.1 2006/05/05 23:14:43 minskim Exp $
--- eval.c.orig 1996-10-23 14:05:27.000000000 -0700
+++ eval.c
@@ -5,7 +5,7 @@
*/
#include <stdio.h>
-#include <malloc.h>
+#include <stdlib.h>
#include "gb_graph.h"
#include "gb_dijk.h"
#include "eval.h"
@@ -159,8 +159,7 @@ int bicomp(Graph *g,int verbose)
if (u == &dummy) {
if (verbose) {
if (artic_pt)
- printf(" and %d (this ends a connected
- component of the graph)\n", idx(g, artic_pt));
+ printf(" and %d (this ends a connected component of the graph)\n", idx(g, artic_pt));
else
printf("Isolated vertex %d\n", idx(g, v));
}
|