> I am trying to compile and link a c program that requires the libraries
> librpcsvc.a and libsocket.a on an IBM RS6000 machine running AIX 4.3. I
> cannot seem to find these files. Do they exist in AIX 4.3?
On my 4.3.2 system:
$ ls -l /usr/lib/librpcsvc.a /usr/lib/libsocket.a
ls: 0653-341 The file /usr/lib/libsocket.a does not exist.
-r--r--r-- 1 root system 234075 Nov 02 1999 /usr/lib/librpcsvc.a
$ lslpp -w /usr/lib/librpcsvc.a
File Fileset Type
----------------------------------------------------------------------------
/usr/lib/librpcsvc.a bos.net.tcp.client File
Quote:> If not, can I substitute other libraries?
Most likely you do not need libsocket -- most functions defined there
on other OSes are defined in libc.a on AIX.
Cheers,
--
In order to understand recursion you must first understand recursion.