Newsgroups: comp.parallel.pvm,comp.unix.bsd.freebsd.misc
From: Faried Nawaz <fn@uidaho.edu>
Reply-To: fn@uidaho.edu
Subject: Re: PVM and FreeBSD
Organization: this is the end...
Date: 12 Nov 1995 01:25:47 -0800
Mime-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Message-ID: <imbuqiyyjo.fsf@waldrog.cs.uidaho.edu>

In article <47vvt0$ups@columba.udac.uu.se> "Peter Hgglund" <peterh@tdb.uu.se> writes:

$    ../pvmlog.c:103: conflicting types for 'sys_errlist'
$    /usr/include/stdio.h:244: previous declaration of 'sys_errlist'
$    Error code 1
$ 
$ and then, not surprisingly, stops.
$ Is there an easy way around this problem?

yep.  take the sys_errlist line out of pvmlog.c.  or change it to

extern __const char *__const sys_errlist[];

(or however it's defined in /usr/include/stdio.h).

