home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #31 / NN_1992_31.iso / spool / bit / listserv / c370l / 164 < prev    next >
Encoding:
Internet Message Format  |  1992-12-22  |  1.2 KB

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