Fix a couple of warnings (non-prototype functions).

svn path=/trunk/yasm/; revision=1967
This commit is contained in:
Peter Johnson 2007-09-20 03:55:17 +00:00
parent 9064df86a8
commit bb67a2b08d

View file

@ -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;