home *** CD-ROM | disk | FTP | other *** search
- Path: sparky!uunet!mcsun!uknet!pavo.csi.cam.ac.uk!ag129
- From: ag129@cus.cam.ac.uk (Alasdair Grant)
- Newsgroups: bit.listserv.c370-l
- Subject: Re: 8+ VARIABLE NAMES
- Message-ID: <1992Dec22.192222.2526@infodev.cam.ac.uk>
- Date: 22 Dec 92 19:22:22 GMT
- References: <C370-L%92122209273927@VM.USC.EDU>
- Sender: news@infodev.cam.ac.uk (USENET news)
- Organization: U of Cambridge, England
- Lines: 14
- Nntp-Posting-Host: bootes.cus.cam.ac.uk
-
- In article <C370-L%92122209273927@VM.USC.EDU> ISRIB@EMUVM1.BITNET (Richard Brooks) writes:
- >Specifically, when I compile I get a truncation warning, and ccode=4.
- >When I try to link, I get an unresolved entry error, and ccode=8.
- >The RPC entry causing my problem is xdr_record().
-
- What is xdr_record()? It's not a standard procedure; is it one you are
- defining? If you haven't defined it, it's no wonder you get an unresolved
- reference! Name space clashes would result in IEW0241, external symbol
- doubly defined.
-
- You might have meant to use xdrrec_endofrecord() or xdrrec_eof(), which
- clash, but "manifest.h" maps these to xdrcEndf and xdrcEf respectively.
- If this doesn't help, try posting the linkage editor error message.
- That would at least show what the external symbol name actually was.
-