forked from aniani/nasm
Added appropriate "void" prototypes.
This commit is contained in:
@@ -1192,7 +1192,7 @@ static void bin_assign_attributes(struct Section *sec, char *astring)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void bin_define_section_labels()
|
static void bin_define_section_labels(void)
|
||||||
{
|
{
|
||||||
static int labels_defined = 0;
|
static int labels_defined = 0;
|
||||||
struct Section *sec;
|
struct Section *sec;
|
||||||
@@ -1438,7 +1438,7 @@ struct ofmt of_bin = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
/* This is needed for bin_define_section_labels() */
|
/* This is needed for bin_define_section_labels() */
|
||||||
struct ofmt *bin_get_ofmt()
|
struct ofmt *bin_get_ofmt(void)
|
||||||
{
|
{
|
||||||
return &of_bin;
|
return &of_bin;
|
||||||
}
|
}
|
||||||
|
@@ -1491,7 +1491,7 @@ void stabs_generate(void)
|
|||||||
stabstrbuf = ssbuf;
|
stabstrbuf = ssbuf;
|
||||||
}
|
}
|
||||||
|
|
||||||
void stabs_cleanup()
|
void stabs_cleanup(void)
|
||||||
{
|
{
|
||||||
struct linelist *ptr, *del;
|
struct linelist *ptr, *del;
|
||||||
if (!stabslines)
|
if (!stabslines)
|
||||||
|
Reference in New Issue
Block a user