summaryrefslogtreecommitdiffstats
path: root/sys/gnu/isdn/isdn.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/gnu/isdn/isdn.c')
-rw-r--r--sys/gnu/isdn/isdn.c15
1 files changed, 9 insertions, 6 deletions
diff --git a/sys/gnu/isdn/isdn.c b/sys/gnu/isdn/isdn.c
index e1e4fd1..edb87f7 100644
--- a/sys/gnu/isdn/isdn.c
+++ b/sys/gnu/isdn/isdn.c
@@ -1,6 +1,6 @@
-static char _isdnid[] = "@(#)$Id: isdn.c,v 1.3 1995/03/28 07:54:44 bde Exp $";
+static char _isdnid[] = "@(#)$Id: isdn.c,v 1.4 1995/05/30 07:58:02 rgrimes Exp $";
/*******************************************************************************
- * II - Version 0.1 $Revision: 1.3 $ $State: Exp $
+ * II - Version 0.1 $Revision: 1.4 $ $State: Exp $
*
* Copyright 1994 Dietmar Friede
*******************************************************************************
@@ -10,6 +10,9 @@ static char _isdnid[] = "@(#)$Id: isdn.c,v 1.3 1995/03/28 07:54:44 bde Exp $
*
*******************************************************************************
* $Log: isdn.c,v $
+ * Revision 1.4 1995/05/30 07:58:02 rgrimes
+ * Remove trailing whitespace.
+ *
* Revision 1.3 1995/03/28 07:54:44 bde
* Add and move declarations to fix all of the warnings from `gcc -Wimplicit'
* (except in netccitt, netiso and netns) that I didn't notice when I fixed
@@ -197,7 +200,7 @@ isdn_ctrl_attach(int n)
* isdn device are the ISDN-daemon
*/
int
-isdnopen(dev_t dev, int flag)
+isdnopen(dev_t dev, int flags, int fmt, struct proc *p)
{
int err;
@@ -214,14 +217,14 @@ isdnopen(dev_t dev, int flag)
}
int
-isdnclose(dev_t dev, int flag)
+isdnclose(dev_t dev, int flags, int fmt, struct proc *p)
{
o_flags &= ~(1 << minor(dev));
return (0);
}
int
-isdnread(dev_t dev, struct uio * uio)
+isdnread(dev_t dev, struct uio * uio, int ioflag)
{
int x;
int error = 0;
@@ -246,7 +249,7 @@ isdnread(dev_t dev, struct uio * uio)
}
int
-isdnioctl(dev_t dev, int cmd, caddr_t data, int flag)
+isdnioctl(dev_t dev, int cmd, caddr_t data, int flags, struct proc *p)
{
int err, x, i;
isdn_appl_t *appl;
OpenPOWER on IntegriCloud