Compiling tinymud2 under HP-UX

Dan Bernstein brnstnd at kramden.acf.nyu.edu
Wed Sep 12 05:36:40 AEST 1990


In article <138 at wgate.UUCP> jwh at wgate.UUCP (Joe Hughes) writes:
  [ undefined symbols in linking on an HP 9000/360 under HP-UX 7.0 ]
> 	_getdtablesize
> 	_bcopy
> 	_index

getdtablesize returns the maximum number of file descriptors; try
replacing any use of it by NOFILE. (Obligatory swipe at C: You can't do
this with a macro.) bcopy(src,dst,len) is (basically) the same as
memcpy(dst,src,len). Finally, index is strchr.

---Dan



More information about the Comp.unix.questions mailing list