diff options
-rw-r--r-- | gdb/dcache.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gdb/dcache.c b/gdb/dcache.c index 6f443f1..d92cd1b 100644 --- a/gdb/dcache.c +++ b/gdb/dcache.c @@ -29,6 +29,10 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ struct qelem; #define insque(a,b) (insque)((struct qelem *)(a), (struct qelem *)(b)) #define remque(a) (remque)((struct qelem *)(a)) +#else + +extern int insque(); +extern int remque(); #endif int remote_dcache = 0; |