I am compling a C++ program with CC on HP-UX, as so :
CC Server.cpp -o Server -lxnet
But the following errors come up:
CC: "Server.cpp", line 47: error: undefined function inet_ntoa called
(1286)
CC: "Server.cpp", line 48: error: undefined function fork called (1286)
CC: "Server.cpp", line 51: error: undefined function close called (1286)
I know it's something to do with library but I am unfamiliar with C/C++
programming. I was wondering wheter anyone can help me with this
problem.
Diarmuid