*BSD News Article 54497


Return to BSD News archive

Path: euryale.cc.adfa.oz.au!newshost.anu.edu.au!harbinger.cc.monash.edu.au!yarrina.connect.com.au!munnari.OZ.AU!spool.mu.edu!howland.reston.ans.net!newsfeed.internetmci.com!gatech2!pirates!cssun.mathcs.emory.edu!swrinde!sgigate.sgi.com!wetware!wsrcc.com!news.orst.edu!news.uidaho.edu!usenet
From: Faried Nawaz <fn@uidaho.edu>
Newsgroups: comp.parallel.pvm,comp.unix.bsd.freebsd.misc
Subject: Re: PVM and FreeBSD
Date: 12 Nov 1995 01:25:47 -0800
Organization: this is the end...
Lines: 14
Sender: nawaz921@waldrog.cs.uidaho.edu
Distribution: world
Message-ID: <imbuqiyyjo.fsf@waldrog.cs.uidaho.edu>
References: <47vvt0$ups@columba.udac.uu.se>
Reply-To: fn@uidaho.edu
NNTP-Posting-Host: waldrog.cs.uidaho.edu
Mime-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
In-reply-to: "Peter Hägglund"'s message of 10 Nov 1995 16:50:40 GMT
X-Newsreader: Gnus v5.0.9
Xref: euryale.cc.adfa.oz.au comp.parallel.pvm:4089 comp.unix.bsd.freebsd.misc:8567

In article <47vvt0$ups@columba.udac.uu.se> "Peter Hägglund" <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).