Using new headers
This commit is contained in:
parent
1df930a60a
commit
8685a3ab80
|
@ -1,3 +1,4 @@
|
||||||
lib_LIBRARIES = libMcp.a libMcl.a
|
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
|
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
|
libMcl_a_SOURCES = drive_vti_l.c drive_vti_l.h parse_vti_l.c mcl.h
|
||||||
|
|
|
@ -29,6 +29,10 @@
|
||||||
* *
|
* *
|
||||||
* Modified, rewritten and maintained by Frederic Petrot since september 1990 *
|
* Modified, rewritten and maintained by Frederic Petrot since september 1990 *
|
||||||
* Modified by Gregoire Avot : RC wire support. *
|
* 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)
|
#define RCN_FLAG_USER_27 ((unsigned char) 0x00000020)
|
||||||
|
@ -40,10 +44,10 @@
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
#include "drive_vti_l.h"
|
#include "drive_vti_l.h"
|
||||||
#include MUT_H
|
#include <mut.h>
|
||||||
#include MLO_H
|
#include <mlo.h>
|
||||||
#include MLU_H
|
#include <mlu.h>
|
||||||
#include RCN_H
|
#include <rcn.h>
|
||||||
|
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
* needed to allow edition with vi on big interfaces instances *
|
* needed to allow edition with vi on big interfaces instances *
|
||||||
|
|
|
@ -28,6 +28,9 @@
|
||||||
* date : 13/05/92 *
|
* date : 13/05/92 *
|
||||||
* *
|
* *
|
||||||
* Modified, rewritten and maintained by Frederic Petrot since september 1990 *
|
* 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
|
||||||
* *
|
* *
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
|
@ -37,9 +40,9 @@
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
#include MUT_H
|
#include <mut.h>
|
||||||
#include MPH_H
|
#include <mph.h>
|
||||||
#include MPU_H
|
#include <mpu.h>
|
||||||
#include "drive_vti_p.h"
|
#include "drive_vti_p.h"
|
||||||
|
|
||||||
/*******************************************************************************
|
/*******************************************************************************
|
||||||
|
|
|
@ -39,6 +39,12 @@
|
||||||
* *
|
* *
|
||||||
* version : 4.12 *
|
* version : 4.12 *
|
||||||
* date : 12/06/1998 *
|
* 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"
|
#ident "@(#)vti logical views parser version 4.04"
|
||||||
|
@ -47,10 +53,10 @@
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
#include MUT_H
|
#include <mut.h>
|
||||||
#include MLO_H
|
#include <mlo.h>
|
||||||
#include MLU_H
|
#include <mlu.h>
|
||||||
#include RCN_H
|
#include <rcn.h>
|
||||||
|
|
||||||
#define LSIZE 16384 /* max line size for vfgets */
|
#define LSIZE 16384 /* max line size for vfgets */
|
||||||
|
|
||||||
|
|
|
@ -40,8 +40,11 @@
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* $Log: parse_vti_p.c,v $
|
* $Log: parse_vti_p.c,v $
|
||||||
* Revision 1.1 2002/03/08 14:17:47 fred
|
* Revision 1.2 2002/03/14 12:34:30 fred
|
||||||
* Initial revision
|
* 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
|
* Revision 1.7 2001/02/21 15:37:40 fred
|
||||||
* New layers
|
* New layers
|
||||||
|
@ -71,15 +74,15 @@
|
||||||
* rcs version number consistency
|
* 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 <string.h>
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
#include MUT_H
|
#include <mut.h>
|
||||||
#include MPH_H
|
#include <mph.h>
|
||||||
#include MPU_H
|
#include <mpu.h>
|
||||||
|
|
||||||
#define LSIZE 16384 /* max line size for fgets */
|
#define LSIZE 16384 /* max line size for fgets */
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue