From: Doug Evans Date: Mon, 1 Dec 1997 19:30:53 +0000 (+0000) Subject: * callback.h (CB_SYSCALL): Comment out arg names in prototypes. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1e92854b08002f7c2a01d3ee6da45c43ff3c3e2e;p=binutils-gdb.git * callback.h (CB_SYSCALL): Comment out arg names in prototypes. --- diff --git a/include/callback.h b/include/callback.h index 036020e0226..30752842ed9 100644 --- a/include/callback.h +++ b/include/callback.h @@ -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;