[PAHOLE]: make some functions static

These are currently only used by pahole and would live in classes otherwise.

Signed-off-by: Bernhard Fischer <rep.nop@aon.at>
Signed-off-by: Arnaldo Carvalho de Melo <acme@mandriva.com>
This commit is contained in:
Bernhard Fischer 2006-12-05 14:58:27 -02:00 committed by Arnaldo Carvalho de Melo
parent a35aa33be8
commit c9be4684fe
1 changed files with 3 additions and 3 deletions

View File

@ -84,7 +84,7 @@ static void print_total_structure_stats(void)
structure__print(pos);
}
struct cu *cu__filter(struct cu *cu)
static struct cu *cu__filter(struct cu *cu)
{
if (cu__exclude_prefix != NULL &&
(cu->name == NULL ||
@ -95,7 +95,7 @@ struct cu *cu__filter(struct cu *cu)
return cu;
}
struct class *class__to_struct(struct class *class)
static struct class *class__to_struct(struct class *class)
{
struct class *typedef_alias;
@ -104,7 +104,7 @@ struct class *class__to_struct(struct class *class)
return typedef_alias ?: class;
}
struct class *class__filter(struct class *class)
static struct class *class__filter(struct class *class)
{
class = class__to_struct(class);
if (class == NULL) /* Not a structure */