aboutsummaryrefslogtreecommitdiffstats
path: root/isdn.c
diff options
context:
space:
mode:
authorreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2000-03-10 17:36:02 +0000
committerreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2000-03-10 17:36:02 +0000
commit713dd4045fdc6312cb80a4aee9b17a3dd5cc1368 (patch)
tree19ec78ceacf92efbcd4f057e2cf27325dfd3b9b9 /isdn.c
parent32b5a154a49a57c94b26102105bc7adb308022e4 (diff)
downloadlcd4linux-713dd4045fdc6312cb80a4aee9b17a3dd5cc1368.tar.gz
[lcd4linux @ 2000-03-10 17:36:02 by reinelt]
first unstable but running release git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@9 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'isdn.c')
-rw-r--r--isdn.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/isdn.c b/isdn.c
index e5e7b68..f6dfc4b 100644
--- a/isdn.c
+++ b/isdn.c
@@ -1,4 +1,4 @@
-/* $Id: isdn.c,v 1.3 2000/03/07 11:01:34 reinelt Exp $
+/* $Id: isdn.c,v 1.4 2000/03/10 17:36:02 reinelt Exp $
*
* ISDN specific functions
*
@@ -20,6 +20,10 @@
*
*
* $Log: isdn.c,v $
+ * Revision 1.4 2000/03/10 17:36:02 reinelt
+ *
+ * first unstable but running release
+ *
* Revision 1.3 2000/03/07 11:01:34 reinelt
*
* system.c cleanup
@@ -34,7 +38,7 @@
/*
* exported functions:
*
- * Isdn (int *usage, int *rx, int *tx)
+ * Isdn (int *rx, int *tx, int *usage)
* returns 0 if ok, -1 if error
* sets *usage to all channels USAGE or'ed together
* sets received/transmitted bytes in *rx, *tx
@@ -101,7 +105,7 @@ static int Usage (void)
return usage;
}
-int Isdn (int *usage, int *rx, int *tx)
+int Isdn (int *rx, int *tx, int *usage)
{
static int fd=-2;
CPS cps[ISDN_MAX_CHANNELS];