blob: ae3f80172ccc3d99ee3817f5329e592a4e2aedc7 (
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;
{
}
|