I am trying to port this old program. Why do I get undefined external errors for some library functions?

Q

I am trying to port this old program. Why do I get undefined external errors for some library functions?

✍: Guest

A

Some old or semistandard functions have been renamed or replaced over the years;
if you need:/you should instead:
index
use strchr.
rindex
use strrchr.
bcopy
use memmove, after interchanging the first and second arguments.
bcmp
use memcmp.
bzero
use memset, with a second argument of 0.

2015-07-16, 1055👍, 0💬