dwarves: export ftype__fprintf_parms

Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
Arnaldo Carvalho de Melo 2009-06-08 14:23:46 -03:00
parent e39c0b0998
commit 4b796de4aa
2 changed files with 6 additions and 3 deletions

View File

@ -629,6 +629,9 @@ size_t ftype__fprintf(const struct ftype *self, const struct cu *cu,
const char *name, const int inlined,
const int is_pointer, const int type_spacing,
const struct conf_fprintf *conf, FILE *fp);
size_t ftype__fprintf_parms(const struct ftype *self,
const struct cu *cu, int indent,
const struct conf_fprintf *conf, FILE *fp);
int ftype__has_parm_of_type(const struct ftype *self, const uint16_t target,
const struct cu *cu);

View File

@ -762,9 +762,9 @@ const char *function__prototype(const struct function *self,
return bf;
}
static size_t ftype__fprintf_parms(const struct ftype *self,
const struct cu *cu, int indent,
const struct conf_fprintf *conf, FILE *fp)
size_t ftype__fprintf_parms(const struct ftype *self,
const struct cu *cu, int indent,
const struct conf_fprintf *conf, FILE *fp)
{
struct parameter *pos;
int first_parm = 1;