Eliminate PARAMS from function pointer declarations.

This commit is contained in:
Kevin Buettner
2000-06-04 00:41:10 +00:00
parent 450005e7c2
commit 507f3c78fb
53 changed files with 238 additions and 233 deletions

View File

@@ -23,9 +23,7 @@
#ifndef DCACHE_H
#define DCACHE_H
typedef int (*memxferfunc) PARAMS ((CORE_ADDR memaddr,
char *myaddr,
int len));
typedef int (*memxferfunc) (CORE_ADDR memaddr, char *myaddr, int len);
typedef struct dcache_struct DCACHE;