tags:

views:

53

answers:

2

I seem to have trouble finding the correct library to #include in my source code. Searched all over the web and my manpages... No result :'(

Does anyone have a clue?

A: 

On 32-bit platforms, nlist(3) is in libSystem which is included by default.

On 64-bit platforms, nlist(3) does not exist.

Unless you're looking for non-external symbols, you should use dlsym(3).

KennyTM
nlist_64 is for 64-bit
psaghelyi
A: 

No idea if this helps but on my computer nlist.h is in the iPhone SDK.

/Developer/Platforms/iPhoneOS.platform/Developer/usr/include/mach-o
Simon Groenewolt