From a978b966ff47450e7a251c6a6098691e7a5e2393 Mon Sep 17 00:00:00 2001 From: Michael Meissner Date: Wed, 15 Feb 1995 22:59:36 +0000 Subject: [PATCH] Declare insque/remque as int funcs if not Linux. --- gdb/dcache.c | 4 ++++ 1 file changed, 4 insertions(+) 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; -- 2.7.4