From: Michael Meissner Date: Wed, 26 Nov 1997 21:48:58 +0000 (+0000) Subject: Use names for all prototype arguments X-Git-Tag: gdb-4_18~4165 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=be88ccfcd41c10bfb3e0ad7ec35ba8b25a268168;p=platform%2Fupstream%2Fbinutils.git Use names for all prototype arguments --- diff --git a/include/ChangeLog b/include/ChangeLog index 02cf6f0..9421a78 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,8 @@ +Wed Nov 26 16:47:58 1997 Michael Meissner + + * callback.h (CB_SYSCALL): Consistantly use names for prototype + arguments. + Wed Nov 26 11:39:30 1997 Doug Evans * callback.h (CB_SYSCALL): Change byte count arguments to diff --git a/include/callback.h b/include/callback.h index d2847cc..036020e 100644 --- a/include/callback.h +++ b/include/callback.h @@ -208,9 +208,9 @@ 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 *, struct cb_syscall *, + int (*read_mem) PARAMS ((host_callback *cb, struct cb_syscall *sc, unsigned long taddr, char *buf, int bytes)); - int (*write_mem) PARAMS ((host_callback *, struct cb_syscall *, + 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. */