mirror of
https://github.com/yasm/yasm
synced 2026-08-26 22:26:05 -04:00
Fix a couple of warnings (non-prototype functions).
svn path=/trunk/yasm/; revision=1967
This commit is contained in:
parent
9064df86a8
commit
bb67a2b08d
1 changed files with 2 additions and 2 deletions
|
|
@ -220,7 +220,7 @@ typedef struct constcharparam {
|
|||
static constcharparam_head preproc_options;
|
||||
|
||||
static int
|
||||
do_preproc_only()
|
||||
do_preproc_only(void)
|
||||
{
|
||||
yasm_linemap *linemap;
|
||||
char *preproc_buf = yasm_xmalloc(PREPROC_BUF_SIZE);
|
||||
|
|
@ -318,7 +318,7 @@ do_preproc_only()
|
|||
}
|
||||
|
||||
static int
|
||||
do_assemble()
|
||||
do_assemble(void)
|
||||
{
|
||||
yasm_object *object;
|
||||
const char *base_filename;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue