diff options
author | Michael Meissner <gnu@the-meissners.org> | 1997-11-26 21:48:58 +0000 |
---|---|---|
committer | Michael Meissner <gnu@the-meissners.org> | 1997-11-26 21:48:58 +0000 |
commit | be88ccfcd41c10bfb3e0ad7ec35ba8b25a268168 (patch) | |
tree | 8a2bf6640ae6e4eec4f9d6e752f7bd744c860b68 /include/callback.h | |
parent | 2ec9f3fd50d7221ba692fb63634481a8b5e1ca58 (diff) | |
download | gdb-be88ccfcd41c10bfb3e0ad7ec35ba8b25a268168.zip gdb-be88ccfcd41c10bfb3e0ad7ec35ba8b25a268168.tar.gz gdb-be88ccfcd41c10bfb3e0ad7ec35ba8b25a268168.tar.bz2 |
Use names for all prototype arguments
Diffstat (limited to 'include/callback.h')
-rw-r--r-- | include/callback.h | 4 |
1 files changed, 2 insertions, 2 deletions
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. */ |