home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #18 / NN_1992_18.iso / spool / comp / sys / next / programm / 5602 < prev    next >
Encoding:
Text File  |  1992-08-13  |  953 b   |  39 lines

  1. Newsgroups: comp.sys.next.programmer
  2. Path: sparky!uunet!decwrl!netcomsv!resonex!zenon
  3. From: zenon@resonex.com (Zenon Fortuna)
  4. Subject: Re: atoh
  5. Message-ID: <1992Aug13.205627.20924@resonex.com>
  6. Organization: Resonex Inc., Sunnyvale CA
  7. References: <1992Aug13.071225.9818@cco.caltech.edu>
  8. Date: Thu, 13 Aug 1992 20:56:27 GMT
  9. Lines: 28
  10.  
  11. In article <1992Aug13.071225.9818@cco.caltech.edu> madler@cco.caltech.edu (Mark Adler) writes:
  12. >
  13. >I have release 2.1, where there is a man page for the atoh() function.
  14. >However, I get:
  15. >
  16. >/bin/ld: Undefined symbols:
  17. >_atoh
  18. >
  19. >indicating that it's not really there.  Is there some other sneaky
  20. >library I have to link to get it?  Or is it not there at all?  Is
  21. >it in 2.2?  3.0 beta?
  22.  
  23. The atoh is declared in /usr/lib/libcs.a
  24.  
  25. One of the ways to find it is to execute:
  26.  
  27.     cd /usr/lib
  28.     nm -o *.a | grep atoh
  29.  
  30. ... and to watch for the T symbol value (text section symbol).
  31.  
  32.     -Z.
  33.  
  34. >
  35. >Mark Adler
  36. >madler@tybalt.caltech.edu
  37.  
  38.  
  39.