diff options
author | Kevin Buettner <kevinb@redhat.com> | 2000-05-28 01:12:42 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2000-05-28 01:12:42 +0000 |
commit | a14ed312fd86dd2c862847230931451da2e49942 (patch) | |
tree | e7a00cec4f6ebd4b2d5dd59695c802ef6997d9da /gdb/dcache.c | |
parent | 3c07fb76e69e648d58d507fdb05cf8d461d87dcb (diff) | |
download | gdb-a14ed312fd86dd2c862847230931451da2e49942.zip gdb-a14ed312fd86dd2c862847230931451da2e49942.tar.gz gdb-a14ed312fd86dd2c862847230931451da2e49942.tar.bz2 |
PARAMS removal.
Diffstat (limited to 'gdb/dcache.c')
-rw-r--r-- | gdb/dcache.c | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/gdb/dcache.c b/gdb/dcache.c index c434139..8fd6a8f 100644 --- a/gdb/dcache.c +++ b/gdb/dcache.c @@ -149,24 +149,21 @@ struct dcache_struct int cache_has_stuff; }; -static int dcache_poke_byte PARAMS ((DCACHE * dcache, CORE_ADDR addr, - char *ptr)); +static int dcache_poke_byte (DCACHE * dcache, CORE_ADDR addr, char *ptr); -static int dcache_peek_byte PARAMS ((DCACHE * dcache, CORE_ADDR addr, - char *ptr)); +static int dcache_peek_byte (DCACHE * dcache, CORE_ADDR addr, char *ptr); -static struct dcache_block *dcache_hit PARAMS ((DCACHE * dcache, - CORE_ADDR addr)); +static struct dcache_block *dcache_hit (DCACHE * dcache, CORE_ADDR addr); -static int dcache_write_line PARAMS ((DCACHE * dcache, struct dcache_block * db)); +static int dcache_write_line (DCACHE * dcache, struct dcache_block *db); -static struct dcache_block *dcache_alloc PARAMS ((DCACHE * dcache)); +static struct dcache_block *dcache_alloc (DCACHE * dcache); -static int dcache_writeback PARAMS ((DCACHE * dcache)); +static int dcache_writeback (DCACHE * dcache); -static void dcache_info PARAMS ((char *exp, int tty)); +static void dcache_info (char *exp, int tty); -void _initialize_dcache PARAMS ((void)); +void _initialize_dcache (void); static int dcache_enabled_p = 0; |