I assume someone had a good reason for breaking this? Try again!

For now, I'll content myself with fixing the tree.
This commit is contained in:
Jordan K. Hubbard 1995-02-26 18:20:36 +00:00
parent 53c9f6c0c4
commit a860ee982e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=6736
6 changed files with 12 additions and 12 deletions

View File

@ -15,7 +15,7 @@
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*
* $Id:$
* $Id: fsm.h,v 1.2 1995/02/26 12:17:28 amurai Exp $
*
* TODO:
*/
@ -26,7 +26,7 @@
#include "defs.h"
#include <netinet/in.h>
#include "timeout.h"
#include "cdefs.h"
#include <sys/cdefs.h>
/*
* State of machine

View File

@ -15,14 +15,14 @@
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*
* $Id:$
* $Id: lcp.h,v 1.2 1995/02/26 12:17:36 amurai Exp $
*
* TODO:
*/
#ifndef _LCP_H_
#define _LPC_H_
#include "cdefs.h"
#include <sys/cdefs.h>
struct lcpstate {
u_long his_mru;

View File

@ -15,14 +15,14 @@
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*
* $Id:$
* $Id: lcpproto.h,v 1.2 1995/02/26 12:17:37 amurai Exp $
*
* TODO:
*/
#ifndef _LCPPROTO_H_
#define _LCPPROTO_H_
#include "cdefs.h"
#include <sys/cdefs.h>
/*
* Definition of protocol numbers

View File

@ -15,14 +15,14 @@
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*
* $Id:$
* $Id: log.h,v 1.2 1995/02/26 12:17:38 amurai Exp $
*
* TODO:
*/
#ifndef _LOG_H_
#define _LOG_H_
#include "cdefs.h"
#include <sys/cdefs.h>
/*
* Definition of log level
*/

View File

@ -15,7 +15,7 @@
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*
* $Id: modem.h,v 1.1.1.1 1995/01/31 06:29:56 amurai Exp $
* $Id: modem.h,v 1.2 1995/02/26 12:17:46 amurai Exp $
*
* TODO:
*/
@ -24,7 +24,7 @@
#define _MODEM_H_
#include <termios.h>
#include "mbuf.h"
#include "cdefs.h"
#include <sys/cdefs.h>
extern int RawModem __P((int));
extern void UnrawModem __P((int));

View File

@ -15,14 +15,14 @@
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*
* $Id: timeout.h,v 1.1.1.1 1995/01/31 06:29:55 amurai Exp $
* $Id: timeout.h,v 1.2 1995/02/26 12:18:00 amurai Exp $
*
* TODO:
*/
#ifndef _TIMEOUT_H_
#define _TIMEOUT_H_
#include "cdefs.h"
#include <sys/cdefs.h>
#define TICKUNIT 100000 /* Unit in usec */
#define SECTICKS (1000000/TICKUNIT)