From: Peter Johnson Date: Thu, 20 Sep 2007 03:55:17 +0000 (-0000) Subject: Fix a couple of warnings (non-prototype functions). X-Git-Tag: v0.6.2~5^2~3 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bb67a2b08d716eb0c6fcc513a7256d6a7fcdde27;p=yasm Fix a couple of warnings (non-prototype functions). svn path=/trunk/yasm/; revision=1967 --- 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;