projects
/
binutils-gdb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fed9a8d
)
Declare insque/remque as int funcs if not Linux.
author
Michael Meissner
<gnu@the-meissners.org>
Wed, 15 Feb 1995 22:59:36 +0000
(22:59 +0000)
committer
Michael Meissner
<gnu@the-meissners.org>
Wed, 15 Feb 1995 22:59:36 +0000
(22:59 +0000)
gdb/dcache.c
patch
|
blob
|
history
diff --git
a/gdb/dcache.c
b/gdb/dcache.c
index 6f443f123a6649559a7c0892ad22fa00c8012391..d92cd1b5aa504e54bd338580a3caf7342a985029 100644
(file)
--- 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;