Re: libc6 is missing "swab"

1998-01-03 Thread Mark W. Eichin
well, swab() isn't a "standard" function, for one thing. It's a rarely used old-BSD bit, that people occasionally use anyway. Putting the code directly inline is probably all you can do... -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble?

Re: libc6 is missing "swab"

1998-01-03 Thread Adam Heath
| On Saturday, 3 January 98, at 4:12:27 AM | Adam wrote about "libc6 is missing "swab"" > When trying to compile nfsroot for libc6, I got a implicit declaration of > swab(...). I fixed it by copying the declaration out of unistd.h. Then, > during linking, I got a

libc6 is missing "swab"

1998-01-03 Thread Adam Heath
When trying to compile nfsroot for libc6, I got a implicit declaration of swab(...). I fixed it by copying the declaration out of unistd.h. Then, during linking, I got an undefined reference to swap(...). I ran objdump on libc.a, and found swap.o, but it only had a text section, and no code! St