Declare insque/remque as int funcs if not Linux.
This commit is contained in:
parent
fed9a8d46e
commit
a978b966ff
1 changed files with 4 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue