Date: Tue, 11 Apr 1995 08:07:06 +0300 From: eliz AT is DOT elta DOT co DOT il (Eli Zaretskii) To: djgpp AT sun DOT soe DOT clarkson DOT edu, bob AT xnet DOT com Subject: Re: ignore most of my last... > oh, and i found the functions i was looking for. i guess i just really needed > to know what the libraries are because libpc.a or libpc_p.a don't tell me much. > is there a listing of this sort somewhere? You can get a listing of a library contents with the nm command. It is part of the Binutils distribution, and should be in your bin/ subdirectory of the main DJGPP directory. Its manual page should be in the docs/ directory. Oh, and the _p versions of the libraries are for compiling with -pg switch (for profiling), they have the same functions as their normal counterparts.