home *** CD-ROM | disk | FTP | other *** search
- *** src/constraint_check.c.orig Tue Dec 15 11:05:55 1992
- --- src/constraint_check.c Tue Dec 15 11:05:35 1992
- ***************
- *** 14,19 ****
- --- 14,21 ----
- * No enforcement done here for these types..
- */
- #include <stdio.h>
- + #include <stdlib.h>
- + #include <ctype.h>
- #include "../install.h"
-
- constraint_check( value, constraint )
- ***************
- *** 20,26 ****
- char value[], constraint[];
- {
- char token[30], val[30], cn[5][8];
- ! double atof(), fval, high, low;
- int i, j, multi, rtnval, nct, ix;
-
- if( strlen( value ) < 1 ) return( 1 ); /* empty */
- --- 22,28 ----
- char value[], constraint[];
- {
- char token[30], val[30], cn[5][8];
- ! double fval, high, low;
- int i, j, multi, rtnval, nct, ix;
-
- if( strlen( value ) < 1 ) return( 1 ); /* empty */
- *** src/graphic.d.orig Tue Dec 15 11:09:18 1992
- --- src/graphic.d Tue Dec 15 10:47:55 1992
- ***************
- *** 2,9 ****
- /* Notes: Calls to NTtext should be always preceded by an NTmov() call.
- */
- #include <stdio.h>
- #include <math.h>
- ! #include <strings.h>
-
- #define YES 1
- #define NO 0
- --- 2,10 ----
- /* Notes: Calls to NTtext should be always preceded by an NTmov() call.
- */
- #include <stdio.h>
- + #include <stdlib.h>
- #include <math.h>
- ! #include <string.h>
-
- #define YES 1
- #define NO 0
- *** src/Makefile.orig Fri Dec 11 11:18:44 1992
- --- src/Makefile Fri Dec 11 12:31:42 1992
- ***************
- *** 1,7 ****
- # Makefile for IPL source 1-21-90 scg
- #
- #
- ! CC=gcc -DNOSUNVIEW
-
- IPL_OBJ = areadef.o areadress.o arrow.o bargraph.o boxplot.o \
- distribution.o draw.o errorbars.o exit.o \
- --- 1,7 ----
- # Makefile for IPL source 1-21-90 scg
- #
- #
- ! CC=cc -DNOSUNVIEW
-
- IPL_OBJ = areadef.o areadress.o arrow.o bargraph.o boxplot.o \
- distribution.o draw.o errorbars.o exit.o \
- ***************
- *** 14,20 ****
-
- PICK_OBJ = dataclick.o get_point.o pick.o siplmenu.o viplmenu.o
-
- ! GDP_OBJ = main.o gget.o constraint_check.o util.o
-
- DRIVER_OBJ = iplps.o pcode.o
-
- --- 14,20 ----
-
- PICK_OBJ = dataclick.o get_point.o pick.o siplmenu.o viplmenu.o
-
- ! GDP_OBJ = main.o gget.o constraint.o util.o
-
- DRIVER_OBJ = iplps.o pcode.o
-
- ***************
- *** 32,37 ****
- --- 32,40 ----
- # ipl: $(IPL_OBJ) $(GRAPHIC_OBJ) $(GDP_OBJ) $(PICK_OBJ) $(DRIVER_OBJ) $(LIB_OBJ)
- # cc $(IPL_OBJ) $(GRAPHIC_OBJ) $(GDP_OBJ) $(PICK_OBJ) $(DRIVER_OBJ) $(LIB_OBJ) \
- # $(LIBES) -o ../bin/ipl
- +
- + constraint.c: constraint_check.c
- + cp constraint_check.c constraint.c
-
- $(GRPAHIC_OBJ) $(IPL_OBJ) $(GDP_OBJ) : ../install.h
- $(GRAPHIC_OBJ) : graphic.h
-