Make configurable without ams.

This commit is contained in:
tsubai 1999-08-16 06:28:09 +00:00
parent 95755c54bb
commit 775199a39f
2 changed files with 12 additions and 12 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: adb.c,v 1.5 1998/10/20 14:56:30 tsubai Exp $ */
/* $NetBSD: adb.c,v 1.6 1999/08/16 06:28:09 tsubai Exp $ */
/*-
* Copyright (C) 1994 Bradley A. Grantham
@ -230,3 +230,13 @@ adbprint(args, name)
return (rv);
}
void
extdms_complete(buffer, compdata, cmd)
caddr_t buffer, compdata;
int cmd;
{
long *p = (long *)compdata;
*p= -1;
}

View File

@ -1,4 +1,4 @@
/* $NetBSD: ams.c,v 1.6 1999/06/17 06:59:05 tsubai Exp $ */
/* $NetBSD: ams.c,v 1.7 1999/08/16 06:28:09 tsubai Exp $ */
/*
* Copyright (C) 1998 Colin Wood
@ -553,16 +553,6 @@ ms_processevent(event, msc)
#endif
}
void
extdms_complete(buffer, compdata, cmd)
caddr_t buffer, compdata;
int cmd;
{
long *p = (long *)compdata;
*p= -1;
}
int
ams_enable(v)
void *v;