From bb67a2b08d716eb0c6fcc513a7256d6a7fcdde27 Mon Sep 17 00:00:00 2001 From: Peter Johnson Date: Thu, 20 Sep 2007 03:55:17 +0000 Subject: [PATCH] Fix a couple of warnings (non-prototype functions). svn path=/trunk/yasm/; revision=1967 --- frontends/yasm/yasm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontends/yasm/yasm.c b/frontends/yasm/yasm.c index 93976152..8800d321 100644 --- a/frontends/yasm/yasm.c +++ b/frontends/yasm/yasm.c @@ -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;