From a14ed312fd86dd2c862847230931451da2e49942 Mon Sep 17 00:00:00 2001 From: Kevin Buettner Date: Sun, 28 May 2000 01:12:42 +0000 Subject: PARAMS removal. --- gdb/dcache.h | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'gdb/dcache.h') diff --git a/gdb/dcache.h b/gdb/dcache.h index 78d17ef..ef9465a 100644 --- a/gdb/dcache.h +++ b/gdb/dcache.h @@ -31,23 +31,24 @@ typedef struct dcache_struct DCACHE; /* Using the data cache DCACHE return the contents of the word at address ADDR in the remote machine. */ -int dcache_fetch PARAMS ((DCACHE * dcache, CORE_ADDR addr)); +int dcache_fetch (DCACHE * dcache, CORE_ADDR addr); /* Flush DCACHE. */ -void dcache_flush PARAMS ((DCACHE * dcache)); +void dcache_flush (DCACHE * dcache); /* Initialize DCACHE. */ -DCACHE *dcache_init PARAMS ((memxferfunc reading, memxferfunc writing)); +DCACHE *dcache_init (memxferfunc reading, memxferfunc writing); /* Write the word at ADDR both in the data cache and in the remote machine. */ -int dcache_poke PARAMS ((DCACHE * dcache, CORE_ADDR addr, int data)); +int dcache_poke (DCACHE * dcache, CORE_ADDR addr, int data); /* Simple to call from _xfer_memory */ -int dcache_xfer_memory PARAMS ((DCACHE * cache, CORE_ADDR mem, char *my, int len, int should_write)); +int dcache_xfer_memory (DCACHE * cache, CORE_ADDR mem, char *my, int len, + int should_write); /* Write the bytes at ADDR into the data cache and the remote machine. */ -int dcache_poke_block PARAMS ((DCACHE * cache, CORE_ADDR mem, char *my, int len)); +int dcache_poke_block (DCACHE * cache, CORE_ADDR mem, char *my, int len); /* Turn dcache state on or off */ void set_dcache_state (int); -- cgit v1.1