Declare insque/remque as int funcs if not Linux.

This commit is contained in:
Michael Meissner 1995-02-15 22:59:36 +00:00
parent fed9a8d46e
commit a978b966ff
1 changed files with 4 additions and 0 deletions

View File

@ -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;