Path: utzoo!utgpu!news-server.csri.toronto.edu!rutgers!orstcs!ogicse!mintaka!yale!cmcl2!kramden.acf.nyu.edu!brnstnd From: brnstnd@kramden.acf.nyu.edu (Dan Bernstein) Newsgroups: comp.unix.questions Subject: Re: Compiling tinymud2 under HP-UX Message-ID: <22531:Sep1119:36:4090@kramden.acf.nyu.edu> Date: 11 Sep 90 19:36:40 GMT References: <138@wgate.UUCP> Distribution: usa Organization: IR Lines: 12 In article <138@wgate.UUCP> jwh@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