Changed K&R C function definition to ANSI C.

This commit is contained in:
Patrik Stridvall 1999-06-12 06:38:22 +00:00 committed by Alexandre Julliard
parent 83d4560ca4
commit e22a4e573a
1 changed files with 1 additions and 6 deletions

View File

@ -1014,12 +1014,7 @@ static void db_task_printsym(unsigned int addr, int size)
DEBUG_PrintAddress( &address, db_disasm_16 ? 16 : 32, TRUE );
}
void
db_print_address(seg, size, addrp, byref)
char * seg;
int size;
struct i_addr *addrp;
int byref;
void db_print_address(char *seg, int size, struct i_addr *addrp, int byref)
{
if (addrp->is_reg) {
fprintf(stderr,"%s", db_reg[size][addrp->disp]);