blob: 21a6db3f5e4207a9253fec73413c0d7abe013bb0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include "gprof.h"
/*
* dummy.c -- This file should be used for an unsupported processor type.
* It does nothing, but prevents findcall() from being unresolved.
*/
findcall( parentp , p_lowpc , p_highpc )
nltype *parentp;
unsigned long p_lowpc;
unsigned long p_highpc;
{
}
|