freem / asm6f

A fork of loopy's ASM6, a 6502 assembler.
96 stars 24 forks source link

Fix incorrect and missing function prototypes #43

Closed koitsu closed 1 year ago

koitsu commented 1 year ago

Examples:

    asm6f.c:150:16: error: this function declaration is not a prototype [-Werror,-Wstrict-prototypes]
    void initlabels();
                   ^
                    void

    asm6f.c:577:7: error: no previous prototype for function 'my_strupr' [-Werror,-Wmissing-prototypes]
    char *my_strupr(char *string)
          ^