Using new headers

This commit is contained in:
Frederic Petrot 2002-03-14 12:34:30 +00:00
parent 1df930a60a
commit 8685a3ab80
5 changed files with 35 additions and 18 deletions

View File

@ -1,3 +1,4 @@
lib_LIBRARIES = libMcp.a libMcl.a
CFLAGS = @CFLAGS@ -DTECHNO=\"symbolic_cmos\"
libMcp_a_SOURCES = drive_vti_p.c drive_vti_p.h parse_vti_p.c mcp.h
libMcl_a_SOURCES = drive_vti_l.c drive_vti_l.h parse_vti_l.c mcl.h

View File

@ -29,6 +29,10 @@
* *
* Modified, rewritten and maintained by Frederic Petrot since september 1990 *
* Modified by Gregoire Avot : RC wire support. *
* $Log: drive_vti_l.c,v $
* Revision 1.2 2002/03/14 12:34:30 fred
* Using new headers
* *
*******************************************************************************/
#define RCN_FLAG_USER_27 ((unsigned char) 0x00000020)
@ -40,10 +44,10 @@
#include <stdlib.h>
#include <time.h>
#include "drive_vti_l.h"
#include MUT_H
#include MLO_H
#include MLU_H
#include RCN_H
#include <mut.h>
#include <mlo.h>
#include <mlu.h>
#include <rcn.h>
/*******************************************************************************
* needed to allow edition with vi on big interfaces instances *

View File

@ -28,7 +28,10 @@
* date : 13/05/92 *
* *
* Modified, rewritten and maintained by Frederic Petrot since september 1990 *
* *
* $Log: drive_vti_p.c,v $
* Revision 1.2 2002/03/14 12:34:30 fred
* Using new headers
* *
*******************************************************************************/
#ident "@(#)vti symbolic layout view driver version 4.00"
@ -37,9 +40,9 @@
#include <string.h>
#include <stdlib.h>
#include <time.h>
#include MUT_H
#include MPH_H
#include MPU_H
#include <mut.h>
#include <mph.h>
#include <mpu.h>
#include "drive_vti_p.h"
/*******************************************************************************

View File

@ -39,6 +39,12 @@
* *
* version : 4.12 *
* date : 12/06/1998 *
* *
* $Log: parse_vti_l.c,v $
* Revision 1.2 2002/03/14 12:34:30 fred
* Using new headers
* *
* *
*******************************************************************************/
#ident "@(#)vti logical views parser version 4.04"
@ -47,10 +53,10 @@
#include <string.h>
#include <stdlib.h>
#include <math.h>
#include MUT_H
#include MLO_H
#include MLU_H
#include RCN_H
#include <mut.h>
#include <mlo.h>
#include <mlu.h>
#include <rcn.h>
#define LSIZE 16384 /* max line size for vfgets */

View File

@ -40,8 +40,11 @@
/*
* $Log: parse_vti_p.c,v $
* Revision 1.1 2002/03/08 14:17:47 fred
* Initial revision
* Revision 1.2 2002/03/14 12:34:30 fred
* Using new headers
*
* Revision 1.1.1.1 2002/03/08 14:17:47 fred
* Importing MBKVTI sources into the new CVS tree
*
* Revision 1.7 2001/02/21 15:37:40 fred
* New layers
@ -71,15 +74,15 @@
* rcs version number consistency
*
*/
#ident "$Id: parse_vti_p.c,v 1.1 2002/03/08 14:17:47 fred Exp $"
#ident "$Id: parse_vti_p.c,v 1.2 2002/03/14 12:34:30 fred Exp $"
#include <string.h>
#include <ctype.h>
#include <stdlib.h>
#include <math.h>
#include MUT_H
#include MPH_H
#include MPU_H
#include <mut.h>
#include <mph.h>
#include <mpu.h>
#define LSIZE 16384 /* max line size for fgets */