1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-15 10:17:20 +00:00

Fixed the type of ity_input(). A trailing arg was missing.

Completed function declarations.

Added prototypes.

Removed some useless includes.
This commit is contained in:
Bruce Evans 1995-11-16 10:35:29 +00:00
parent c4ccf33414
commit fc0c0c5604
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=12329

View File

@ -1,6 +1,6 @@
static char _ittyid[] = "@(#)$Id: iitty.c,v 1.10 1995/07/31 21:01:03 bde Exp $";
static char _ittyid[] = "@(#)$Id: iitty.c,v 1.11 1995/07/31 21:28:42 bde Exp $";
/*******************************************************************************
* II - Version 0.1 $Revision: 1.10 $ $State: Exp $
* II - Version 0.1 $Revision: 1.11 $ $State: Exp $
*
* Copyright 1994 Dietmar Friede
*******************************************************************************
@ -10,6 +10,10 @@ static char _ittyid[] = "@(#)$Id: iitty.c,v 1.10 1995/07/31 21:01:03 bde Exp
*
*******************************************************************************
* $Log: iitty.c,v $
* Revision 1.11 1995/07/31 21:28:42 bde
* Use tsleep() instead of ttysleep() to wait for carrier since a generation
* change isn't an error.
*
* Revision 1.10 1995/07/31 21:01:03 bde
* Obtained from: partly from ancient patches of mine via 1.1.5
*
@ -139,12 +143,11 @@ static char _ittyid[] = "@(#)$Id: iitty.c,v 1.10 1995/07/31 21:01:03 bde Exp
#include "param.h"
#include "systm.h"
#include "conf.h"
#include "ioctl.h"
#include "select.h"
#include "tty.h"
#include "proc.h"
#include "user.h"
#include "conf.h"
#include "file.h"
#include "uio.h"
#include "kernel.h"
@ -153,8 +156,8 @@ static char _ittyid[] = "@(#)$Id: iitty.c,v 1.10 1995/07/31 21:01:03 bde Exp
#include "gnu/isdn/isdn_ioctl.h"
int ityparam();
void itystart();
extern int ityparam __P((struct tty *tp, struct termios *t));
extern void itystart __P((struct tty *tp));
int nity = NITY;
int itydefaultrate = 64000;
@ -275,7 +278,7 @@ itywrite(dev, uio, flag)
}
int
ity_input(int no, int len, char *buf)
ity_input(int no, int len, char *buf, int dir)
{
register struct tty *tp = &ity_tty[no];
int i;