97fa9b7739
on allocation failure instead of displaying a warning and deferencing NULL pointer after. Spelling. Add prototypes. Add list of option in synopsis section of man page, -d is not referenced because available as a compile option. It should be made a runtime option btw.
16 lines
242 B
C
16 lines
242 B
C
#include <sys/cdefs.h>
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
#include "gprof.h"
|
|
|
|
/*
|
|
* gprof -c isn't currently supported...
|
|
*/
|
|
void
|
|
findcall( parentp , p_lowpc , p_highpc )
|
|
nltype *parentp;
|
|
unsigned long p_lowpc;
|
|
unsigned long p_highpc;
|
|
{
|
|
}
|