* callback.h (CB_SYSCALL): Comment out arg names in prototypes.

This commit is contained in:
Doug Evans 1997-12-01 19:30:53 +00:00
parent 1f3880e1f0
commit 1e92854b08
1 changed files with 6 additions and 4 deletions

View File

@ -208,10 +208,12 @@ typedef struct cb_syscall {
argument here. We mimic sim_{read,write} for now. Be careful to
test any changes with -Wall -Werror, mixed signed comparisons
will get you. */
int (*read_mem) PARAMS ((host_callback *cb, struct cb_syscall *sc,
unsigned long taddr, char *buf, int bytes));
int (*write_mem) PARAMS ((host_callback *cb, struct cb_syscall *sc,
unsigned long taddr, const char *buf, int bytes));
int (*read_mem) PARAMS ((host_callback * /*cb*/, struct cb_syscall * /*sc*/,
unsigned long /*taddr*/, char * /*buf*/,
int /*bytes*/));
int (*write_mem) PARAMS ((host_callback * /*cb*/, struct cb_syscall * /*sc*/,
unsigned long /*taddr*/, const char * /*buf*/,
int /*bytes*/));
/* For sanity checking, should be last entry. */
int magic;