]> jspc29.x-matter.uni-frankfurt.de Git - daqdata.git/commitdiff
*** empty log message ***
authorhades <hades>
Mon, 6 Nov 2000 23:43:10 +0000 (23:43 +0000)
committerhades <hades>
Mon, 6 Nov 2000 23:43:10 +0000 (23:43 +0000)
61 files changed:
allParam/Makefile
allParam/ca/Makefile
allParam/ca/caParam.c
allParam/ca/caParam.h
allParam/file/Makefile
allParam/file/fileParam.c
allParam/file/fileParam.h
allParam/ora/Makefile
allParam/ora/oraParam.h
allParam/ora/oraParam.pc
allParam/psql/Makefile
allParam/psql/psqlParam.c
allParam/psql/psqlParam.h
allParam/tcl/Makefile
allParam/tcl/tclParam.c
allParam/tcl/tclParam.h
allParam/test/suite.c
allParam/test/test1.c
allParam/test/test1.h
allParam/test/test10.c
allParam/test/test10.h
allParam/test/test11.c
allParam/test/test11.h
allParam/test/test12.c
allParam/test/test12.h
allParam/test/test13.c
allParam/test/test13.h
allParam/test/test14.c
allParam/test/test14.h
allParam/test/test15.c
allParam/test/test15.h
allParam/test/test16.c
allParam/test/test16.h
allParam/test/test17.c
allParam/test/test17.h
allParam/test/test18.c
allParam/test/test18.h
allParam/test/test19.c
allParam/test/test19.h
allParam/test/test2.c
allParam/test/test2.h
allParam/test/test20.c
allParam/test/test20.h
allParam/test/test21.c
allParam/test/test21.h
allParam/test/test22.c
allParam/test/test22.h
allParam/test/test3.c
allParam/test/test3.h
allParam/test/test4.c
allParam/test/test4.h
allParam/test/test5.c
allParam/test/test5.h
allParam/test/test6.c
allParam/test/test6.h
allParam/test/test7.c
allParam/test/test7.h
allParam/test/test8.c
allParam/test/test8.h
allParam/test/test9.c
allParam/test/test9.h

index 91cb59bdadafefb56ad4fff3468193a0c41f4f38..56df7747400f42e6d78675a010051a90067c7295 100644 (file)
@@ -67,6 +67,11 @@ lib_clean :
 
 tar : lib_clean
        rm -rf old_ca/ old_tcl/ param/
+       ln -s ca/caParam.h allParam.h
+       ln -s file/fileParam.h allParam.h
+       ln -s ora/oraParam.h allParam.h
+       ln -s psql/psqlParam.h allParam.h
+       ln -s tcl/tclParam.h allParam.h
        cd .. ; tar -cvzf param.0.1.tar.Z param/
 
 $(PARAMLIBES) test : dummy
index 3dcd3ec332fc3ed7d304022f43a346a31bb20102..f5246f50961ff0437a486705f3f017c75c047c78 100644 (file)
@@ -1,17 +1,16 @@
-EPICS_BASE = $(EPICS_HOME)/R3.14.0.alpha1
 CFLAGS = -g -ansi -Wall -I$(EPICS_BASE)/include \
   -I$(EPICS_BASE)/include/os/$(HOST_ARCH)
 
-libcaParam.a : param.o
+libcaParam.a : caParam.o
        $(AR) $(ARFLAGS) $@ $<
 
-param.o : param.c param.h
+caParam.o : caParam.c caParam.h
 
 install : libcaParam.a
        -mkdir -p $(LIBDIR)
        install -m 644 $< $(LIBDIR)
        -mkdir -p $(INCDIR)
-       install -m 644 param.h $(INCDIR)
+       install -m 644 caParam.h $(INCDIR)/allParam.h
 
 clean :
        rm -f *.o
index 34c35384089c23c1a7f23fcfaeda0fd4fbab7aff..1ba0efc51f644f4e8d28a9a9dce11c2c304a5d4d 100644 (file)
@@ -7,7 +7,7 @@
 
 #include <cadef.h>
 
-#include "param.h"
+#include "caParam.h"
 
 static void Param_copyToAllocMem(struct event_handler_args args);
 static void Param_returnPVName(const char *, const char *, char *);
index 5ff90281e518dfa9ba80ccd0ea3c856fc4154096..503696dc3226f6167a41fd60bfd1731f780fb1c5 100644 (file)
@@ -1,13 +1,13 @@
-#ifndef PARAM_H
-#define PARAM_H
+#ifndef CAPARAM_H
+#define CAPARAM_H
 
 #define PARAM_MAX_ARRAY_LEN 128
 #define PARAM_MAX_VALUE_LEN 128
 #define PARAM_MAX_NAME_LEN 128
 
-/**************************************************************************
- * Section containing struct Param (different in the different param.h's) *
- **************************************************************************/
+/*****************************************************************************
+ * Section containing struct Param (different in the different xxxParam.h's) *
+ *****************************************************************************/
 
 #define TIMEOUT 0.2
 
@@ -25,9 +25,9 @@ typedef struct ParamResultS {
        int *retVal;
 } ParamResult;
 
-/******************************************************************
- * Section containing the API for param (common to all param.h's) *
- ******************************************************************/
+/*********************************************************************
+ * Section containing the API for param (common to all allParam.h's) *
+ *********************************************************************/
 
 int conParam(Param *);
 void desParam(Param *);
index 6494fc8ceeb33a77d5a56e30d625f7fff476d2b3..42f5845e68d707274be2b10ada6d8fed2e730162 100644 (file)
@@ -1,15 +1,15 @@
 CFLAGS = -g -ansi -Wall
 
-libfileParam.a : param.o
+libfileParam.a : fileParam.o
        $(AR) $(ARFLAGS) $@ $<
 
-param.o : param.c param.h
+fileParam.o : fileParam.c fileParam.h
 
 install : libfileParam.a
        -mkdir -p $(LIBDIR)
        install -m 644 $< $(LIBDIR)
        -mkdir -p $(INCDIR)
-       install -m 644 param.h $(INCDIR)
+       install -m 644 fileParam.h $(INCDIR)/allParam.h
 
 clean :
        rm -f *.o
index d4c65e6fd8af746c94a6d3b81996fa4d99c08366..4b4597c269a5512328bf51ab173723883fead60e 100644 (file)
@@ -7,7 +7,7 @@
 #include <stdlib.h>
 #include <ctype.h>
 
-#include "param.h"
+#include "fileParam.h"
 
 #define BUFFERSIZE 130
 
index f4922abdcf62b086e2f422344a3f6fa698411775..10de0762891c174007afcf62e8b30cb9fba1474f 100644 (file)
@@ -1,13 +1,13 @@
-#ifndef PARAM_H
-#define PARAM_H
+#ifndef FILEPARAM_H
+#define FILEPARAM_H
 
 #define PARAM_MAX_ARRAY_LEN 128
 #define PARAM_MAX_VALUE_LEN 128
 #define PARAM_MAX_NAME_LEN 128
 
-/**************************************************************************
- * Section containing struct Param (different in the different param.h's) *
- **************************************************************************/
+/*****************************************************************************
+ * Section containing struct Param (different in the different xxxParam.h's) *
+ *****************************************************************************/
 
 #define PARAM_MAX_NVALS 1024
 
@@ -21,9 +21,9 @@ typedef struct ParamS {
        char value[PARAM_MAX_NVALS][PARAM_MAX_NAME_LEN];
 } Param;
 
-/******************************************************************
- * Section containing the API for param (common to all param.h's) *
- ******************************************************************/
+/*********************************************************************
+ * Section containing the API for param (common to all allParam.h's) *
+ *********************************************************************/
 
 int conParam(Param *);
 void desParam(Param *);
index 7a66fb872b8cd16c374b5b9ccbba8ea7dd2b7611..8519f60ddc6e5cd6c5c5357ad876571cccbd8dc2 100644 (file)
@@ -14,23 +14,23 @@ PROC_INCLUDES = include=/usr/include include=/usr/include/g++-2 \
   include=$(ORACLE_HOME)/network/public \
   include=../param
 
-liboraParam.a : param.o
+liboraParam.a : oraParam.o
        $(AR) $(ARFLAGS) $@ $<
 
-param.o : param.c param.h
+oraParam.o : oraParam.c oraParam.h
 
-param.c : param.pc
+oraParam.c : oraParam.pc
        $(PROC) $(PROCFLAGS) $(PROC_INCLUDES) iname=$< oname=$@
 
 install : liboraParam.a
        -mkdir -p $(LIBDIR)
        install -m 644 $< $(LIBDIR)
        -mkdir -p $(INCDIR)
-       install -m 644 param.h $(INCDIR)
+       install -m 644 oraParam.h $(INCDIR)/allParam.h
 
 clean :
-       rm -f *.o param.c param.lis
+       rm -f *.o oraParam.c oraParam.lis
 
 lib_clean :
-       rm -f *.o *.a param.c param.lis
+       rm -f *.o *.a oraParam.c oraParam.lis
 
index 371b6b116c6f65e8cb81c28935b534eaac37bd79..316954a0129cbd1e40acae6a4425934446a87dc2 100644 (file)
@@ -1,13 +1,13 @@
-#ifndef PARAM_H
-#define PARAM_H
+#ifndef ORAPARAM_H
+#define ORAPARAM_H
 
 #define PARAM_MAX_ARRAY_LEN 128
 #define PARAM_MAX_VALUE_LEN 128
 #define PARAM_MAX_NAME_LEN 128
 
-/**************************************************************************
- * Section containing struct Param (different in the different param.h's) *
- **************************************************************************/
+/*****************************************************************************
+ * Section containing struct Param (different in the different xxxParam.h's) *
+ *****************************************************************************/
 
 #ifndef STATESET_ST
 
@@ -17,9 +17,9 @@ typedef struct ParamS {
        char *strerror;
 } Param;
 
-/******************************************************************
- * Section containing the API for param (common to all param.h's) *
- ******************************************************************/
+/*********************************************************************
+ * Section containing the API for param (common to all allParam.h's) *
+ *********************************************************************/
 
 int conParam(Param *);
 void desParam(Param *);
index 4cc1a84f7aab6673eb55fb7fa62776876026832c..7d05f1aa48317ead87374dad521305fa63bbb20b 100644 (file)
@@ -8,7 +8,7 @@
 #include <oraca.h>
 #include <sqlca.h>
 
-#include "param.h"
+#include "oraParam.h"
 
 static void Param_rollback();
 
index 6a84cbcf7733c10e0ff57ccf91b7e73378af03ed..4b9d0de050201f0f6067f66bbbbc4d87e947c14d 100644 (file)
@@ -1,15 +1,15 @@
 CFLAGS = -g -ansi -Wall -I/usr/include/pgsql
 
-libpsqlParam.a : param.o
+libpsqlParam.a : psqlParam.o
        $(AR) $(ARFLAGS) $@ $<
 
-param.o : param.c param.h
+psqlParam.o : psqlParam.c psqlParam.h
 
 install : libpsqlParam.a
        -mkdir -p $(LIBDIR)
        install -m 644 $< $(LIBDIR)
        -mkdir -p $(INCDIR)
-       install -m 644 param.h $(INCDIR)
+       install -m 644 psqlParam.h $(INCDIR)/allParam.h
 
 clean :
        rm -f *.o
index 0326442b5eb1b84f8bc71c932b6c28f685177278..afcb1a926019863e47bbe830ee027f852488a07b 100644 (file)
@@ -7,7 +7,7 @@
 
 #include <libpq-fe.h>
 
-#include "param.h"
+#include "psqlParam.h"
 
 static void Param_strerror(Param *, const char *);
 
index 0447fb669dd9ea5110c9f41599524cc88a1b4c3d..137f497efa6195ed9da778365ed91c63c0987121 100644 (file)
@@ -1,13 +1,13 @@
-#ifndef PARAM_H
-#define PARAM_H
+#ifndef PSQLPARAM_H
+#define PSQLPARAM_H
 
 #define PARAM_MAX_ARRAY_LEN 128
 #define PARAM_MAX_VALUE_LEN 128
 #define PARAM_MAX_NAME_LEN 128
 
-/**************************************************************************
- * Section containing struct Param (different in the different param.h's) *
- **************************************************************************/
+/*****************************************************************************
+ * Section containing struct Param (different in the different xxxParam.h's) *
+ *****************************************************************************/
 
 #ifndef STATESET_ST
 
@@ -18,9 +18,9 @@ typedef struct ParamS {
        char *strerror;
 } Param;
 
-/******************************************************************
- * Section containing the API for param (common to all param.h's) *
- ******************************************************************/
+/*********************************************************************
+ * Section containing the API for param (common to all allParam.h's) *
+ *********************************************************************/
 
 int conParam(Param *);
 void desParam(Param *);
index c868867f04ead90b62f20aad8924ec91d28275db..e8e798d3308e1b761bc7b2e212c2243b53697aca 100644 (file)
@@ -1,15 +1,15 @@
 CFLAGS = -g -ansi -Wall
 
-libtclParam.a : param.o
+libtclParam.a : tclParam.o
        $(AR) $(ARFLAGS) $@ $<
 
-param.o : param.c param.h
+tclParam.o : tclParam.c tclParam.h
 
 install : libtclParam.a
        -mkdir -p $(LIBDIR)
        install -m 644 $< $(LIBDIR)
        -mkdir -p $(INCDIR)
-       install -m 644 param.h $(INCDIR)
+       install -m 644 tclParam.h $(INCDIR)/allParam.h
 
 clean :
        rm -f *.o
index c76be3d7a19381dc7a9b2f2aee4a78782845469d..751ef3d9e028b5f54140e6cc3703f9da069874e7 100644 (file)
@@ -7,7 +7,7 @@
 #include <stdlib.h>
 #include <ctype.h>
 
-#include "param.h"
+#include "tclParam.h"
 
 static void Param_strerror(Param *, const char *);
 
index e4b94510ce2c3d52d8e4a57835a21e0471e2f9c5..af2345f9cd5444fc9e35d0e9b3d9022e608cc9b5 100644 (file)
@@ -1,13 +1,13 @@
-#ifndef PARAM_H
-#define PARAM_H
+#ifndef TCLPARAM_H
+#define TCLPARAM_H
 
 #define PARAM_MAX_ARRAY_LEN 128
 #define PARAM_MAX_VALUE_LEN 128
 #define PARAM_MAX_NAME_LEN 128
 
-/**************************************************************************
- * Section containing struct Param (different in the different param.h's) *
- **************************************************************************/
+/*****************************************************************************
+ * Section containing struct Param (different in the different xxxParam.h's) *
+ *****************************************************************************/
 
 #ifndef STATESET_ST
 
@@ -18,9 +18,9 @@ typedef struct ParamS {
        Tcl_Interp *interp;
 } Param;
 
-/******************************************************************
- * Section containing the API for param (common to all param.h's) *
- ******************************************************************/
+/*********************************************************************
+ * Section containing the API for param (common to all allParam.h's) *
+ *********************************************************************/
 
 int conParam(Param *);
 void desParam(Param *);
index 7a4974a3c72c2a68837f82b473030e2f9e8a76b6..cd20d9679596aa3dfe271cfea2edd6a85e152476 100644 (file)
@@ -1,7 +1,7 @@
 #include <stdlib.h>
 #include <stdio.h>
 
-#include <param.h>
+#include <allParam.h>
 
 #include "test1.h"
 #include "test2.h"
index b1600f9ba6ba02dcba18d0b87f071f2f766a63a4..d064a655aa8d54fe0d11092103b3d7898d7a1781 100644 (file)
@@ -1,7 +1,7 @@
 #include <stdio.h>
 #include <string.h>
 
-#include <param.h>
+#include <allParam.h>
 
 #include "test1.h"
 
index d64f69e8d74de84d278a0e1fbd2b59cf96f14aef..3c59cfb9a607b5bf281a8089ac988a3f42e8f730 100644 (file)
@@ -1,7 +1,7 @@
 #ifndef TEST1_H
 #define TEST1_H
 
-#include <param.h>
+#include <allParam.h>
 
 int test1(const char *, const Param *);
 
index ee67044799d77f73c1be5720d070504be4feae05..45456d4583236cb5e58e359365ee8819443dfb4e 100644 (file)
@@ -1,7 +1,7 @@
 #include <stdio.h>
 #include <string.h>
 
-#include <param.h>
+#include <allParam.h>
 
 #include "test10.h"
 
index 4b9e2185dd83dfd860266fc5fe843aa8f37a1fb8..494c275057ac559516426bab120764208d447f55 100644 (file)
@@ -1,7 +1,7 @@
 #ifndef TEST10_H
 #define TEST10_H
 
-#include <param.h>
+#include <allParam.h>
 
 int test10(const char *, const Param *);
 
index ba8ec23f14cf353e20a0f50bdf31e3abadbc5733..bf07ed0b19b2a7bf1ef297c411dd040958b00afb 100644 (file)
@@ -1,7 +1,7 @@
 #include <stdio.h>
 #include <string.h>
 
-#include <param.h>
+#include <allParam.h>
 
 #include "test11.h"
 
index 2550cb0e0acae4e08f6c8a70d005b988f64144c2..9018171f79c4937d316231f2c02677b3ebe808fe 100644 (file)
@@ -1,7 +1,7 @@
 #ifndef TEST11_H
 #define TEST11_H
 
-#include <param.h>
+#include <allParam.h>
 
 int test11(const char *, const Param *);
 
index 75b2b6aad871b702b7e592110fd7e7d497fe218a..15c51b56488ef669f0f36523567a96daf4c652f8 100644 (file)
@@ -1,7 +1,7 @@
 #include <stdio.h>
 #include <string.h>
 
-#include <param.h>
+#include <allParam.h>
 
 #include "test12.h"
 
index 4ca71e04edc091b05b29484c43f92c25cb444dca..55d872b9bb665e8b1cbc57e82c515efc1f187d57 100644 (file)
@@ -1,7 +1,7 @@
 #ifndef TEST12_H
 #define TEST12_H
 
-#include <param.h>
+#include <allParam.h>
 
 int test12(const char *, const Param *);
 
index 508b8bf1352991b0c4a1c2911205e0df2fecdb90..38eea13d381d35c80d3d9e63aa05239a82b725cb 100644 (file)
@@ -2,7 +2,7 @@
 #include <string.h>
 #include <stdlib.h>
 
-#include <param.h>
+#include <allParam.h>
 
 #include "test13.h"
 
index 0cc5448c69601ac1642e685410b9364684b5c37b..41b2a22b2ad37f54887eb93bd738cfed45ea8a4d 100644 (file)
@@ -1,7 +1,7 @@
 #ifndef TEST13_H
 #define TEST13_H
 
-#include <param.h>
+#include <allParam.h>
 
 #define NUM1 8
 
index 9469d4393de7c541e940a62c0c1a3fb3283c1f6b..70de9f3853807e431abeb71928b5a987cc21b3b5 100644 (file)
@@ -1,7 +1,7 @@
 #include <stdio.h>
 #include <string.h>
 
-#include <param.h>
+#include <allParam.h>
 
 #include "test14.h"
 
index a0bd53b9fe7b8bea8c0587adcb1b0677c445f367..b5d6bee7a268a75ad942ca2e9cb40f225c5bd32d 100644 (file)
@@ -1,7 +1,7 @@
 #ifndef TEST14_H
 #define TEST14_H
 
-#include <param.h>
+#include <allParam.h>
 
 #define NUM2 32
 
index cff7481d823a670bf3e03d57a538ff5d11a4cb83..720e3c4c06b19feaff5a23cb729ff07e5a1b1092 100644 (file)
@@ -2,7 +2,7 @@
 #include <string.h>
 #include <stdlib.h>
 
-#include <param.h>
+#include <allParam.h>
 
 #include "test15.h"
 
index 298af3e1c62e59b32960dcc48efca3c9c14fd314..fdbb051b010c77f5877cf2b9108cd27551f6051a 100644 (file)
@@ -1,7 +1,7 @@
 #ifndef TEST15_H
 #define TEST15_H
 
-#include <param.h>
+#include <allParam.h>
 
 #define NUM1 8
 #define NUM3 16
index 354a39aa76da8a39119086c853254d86d781aee3..ab733c984f8b72297b2060778f9271f909a61945 100644 (file)
@@ -1,7 +1,7 @@
 #include <stdio.h>
 #include <string.h>
 
-#include <param.h>
+#include <allParam.h>
 
 #include "test16.h"
 
index 02d02fe35560f44aa0fc79a00b2b447f26059449..5d3d1b599511b477ba736a16ca65737da4b7bac4 100644 (file)
@@ -1,7 +1,7 @@
 #ifndef TEST16_H
 #define TEST16_H
 
-#include <param.h>
+#include <allParam.h>
 
 #define NUM2 32
 #define NUM4 64
index d188443054e3719a3ff3ee1e743dd561d532f12a..22a9b5e3d0856b8bbab89abfc6e3d56dca4058d4 100644 (file)
@@ -2,7 +2,7 @@
 #include <string.h>
 #include <stdlib.h>
 
-#include <param.h>
+#include <allParam.h>
 
 #include "test17.h"
 
index f8a3d03be41636ca5804e064a5edc8a123a2bdd7..e1187d87641a56a0ef8a7ae7939c6558a7f6aabf 100644 (file)
@@ -1,7 +1,7 @@
 #ifndef TEST17_H
 #define TEST17_H
 
-#include <param.h>
+#include <allParam.h>
 
 #define NUM1 8
 #define NUM5 4
index 4fb49e39b198f5710fc5fd2a511ca3770cbc071e..f41206fd34ce8080fa3e1d07473bd4d4000cf8e7 100644 (file)
@@ -1,7 +1,7 @@
 #include <stdio.h>
 #include <string.h>
 
-#include <param.h>
+#include <allParam.h>
 
 #include "test18.h"
 
index 9ad80d2e07c7299dc480bdce8c38c5c88698639a..c11451b071a3b10512b0b95f264068e83b843db1 100644 (file)
@@ -1,7 +1,7 @@
 #ifndef TEST18_H
 #define TEST18_H
 
-#include <param.h>
+#include <allParam.h>
 
 #define NUM2 32
 #define NUM6 16
index ab2c4dca0f360cc563968971a49e1307aef280b3..2b5607b243f68418c550ea38fa919cfc96d78ab4 100644 (file)
@@ -2,7 +2,7 @@
 #include <string.h>
 #include <stdlib.h>
 
-#include <param.h>
+#include <allParam.h>
 
 #include "test19.h"
 
index 0e2d5bb242437e3174def32c05898e69505ac783..f1ac665dbd6f2bd3d0dca85d2851e682de0d9e81 100644 (file)
@@ -1,7 +1,7 @@
 #ifndef TEST19_H
 #define TEST19_H
 
-#include <param.h>
+#include <allParam.h>
 
 #define NUM2 32
 
index af3b82f88071af07403f7c3d36412c63d964cb4d..f34ffe81b49b72b27202ad1bb36adc8818bb357c 100644 (file)
@@ -1,7 +1,7 @@
 #include <stdio.h>
 #include <string.h>
 
-#include <param.h>
+#include <allParam.h>
 
 #include "test2.h"
 
index 9cd4a0bb0ba354021e1e6c3f7b20abada5f64a76..f4d6fdea9c409ed054279d63f6dd5caeff98d21f 100644 (file)
@@ -1,7 +1,7 @@
 #ifndef TEST2_H
 #define TEST2_H
 
-#include <param.h>
+#include <allParam.h>
 
 int test2(const char *, const Param *);
 
index 1c4484c7060604066e47368596c237d27d48f2c9..35506dc7c42b5dad16e9affae7b79f4d136b7f15 100644 (file)
@@ -1,7 +1,7 @@
 #include <stdio.h>
 #include <string.h>
 
-#include <param.h>
+#include <allParam.h>
 
 #include "test20.h"
 
index c4d0b6ef93cb0ca195a186b562e18c63657aebe1..754e5550c090b88a2ba63c7934400b1e5821e791 100644 (file)
@@ -1,7 +1,7 @@
 #ifndef TEST20_H
 #define TEST20_H
 
-#include <param.h>
+#include <allParam.h>
 
 #define NUM1 8
 
index 9c1333180cd5f4e3ab937c9902da64acba1fb8ee..76277d16104e8403936249a3afa196ddb3efbb73 100644 (file)
@@ -2,7 +2,7 @@
 #include <string.h>
 #include <stdlib.h>
 
-#include <param.h>
+#include <allParam.h>
 
 #include "test21.h"
 
index ccc38edc29b2866d09f5eaf9c90d51d79e89b25d..30e078c1be93e6164b7f0f3d962ef68ba98d8739 100644 (file)
@@ -1,7 +1,7 @@
 #ifndef TEST21_H
 #define TEST21_H
 
-#include <param.h>
+#include <allParam.h>
 
 #define NUM1 8
 
index 7d4d7f8db87ac97ffd8cad52d6eaf6d7b5c68b0d..84dc726580f6c5fbfdf8d24fda27360735c6430d 100644 (file)
@@ -1,7 +1,7 @@
 #include <stdio.h>
 #include <string.h>
 
-#include <param.h>
+#include <allParam.h>
 
 #include "test22.h"
 
index 9a9115692e09fdbaca88a0407a1786f78b3057c9..147f567bfaed1e5597ebabed19c47ef1cdad72b4 100644 (file)
@@ -1,7 +1,7 @@
 #ifndef TEST22_H
 #define TEST22_H
 
-#include <param.h>
+#include <allParam.h>
 
 int test22(const char *, const Param *);
 
index 340d0530612da57eb4fb62f1f1c78bf1257418f2..d8f5abd28066543fb7f992e5f42e68f29a9acb15 100644 (file)
@@ -2,7 +2,7 @@
 #include <string.h>
 #include <stdlib.h>
 
-#include <param.h>
+#include <allParam.h>
 
 #include "test3.h"
 
index 4d053dd181f056261cde6b68803d23c5a5f6d7c7..0ad44329e7fdf5415d858cc7d813878270575b14 100644 (file)
@@ -1,7 +1,7 @@
 #ifndef TEST3_H
 #define TEST3_H
 
-#include <param.h>
+#include <allParam.h>
 
 #define NUM1 8
 
index f97a0f4bb1e9faf42586395f976c0fd0e11be352..3941dfbe513fee07946643903742a214ba3fd033 100644 (file)
@@ -1,7 +1,7 @@
 #include <stdio.h>
 #include <string.h>
 
-#include <param.h>
+#include <allParam.h>
 
 #include "test4.h"
 
index 95e178d39e1dfa27403894e0994b2a14efe5a702..d293afb34c829678828b009e1ba784f8c41dc861 100644 (file)
@@ -1,7 +1,7 @@
 #ifndef TEST4_H
 #define TEST4_H
 
-#include <param.h>
+#include <allParam.h>
 
 #define NUM2 32
 
index 3d3df18d06fd0e607ef5530039d89720803be3ba..1c2d45057c6127959b4764067a1e0cfba885a784 100644 (file)
@@ -1,7 +1,7 @@
 #include <stdio.h>
 #include <string.h>
 
-#include <param.h>
+#include <allParam.h>
 
 #include "test5.h"
 
index 5459560ff1ccad5e5523394a946a7c080a19af1c..c4a85f63c9f80c05dc49e578ff1c51291652f324 100644 (file)
@@ -1,7 +1,7 @@
 #ifndef TEST5_H
 #define TEST5_H
 
-#include <param.h>
+#include <allParam.h>
 
 int test5(const char *, const Param *);
 
index 99cb60e9f0e615b2a8cfe85c7f9387f7ed7dbebc..4967ebbef405699867ebd18b53e471c89a31668f 100644 (file)
@@ -1,7 +1,7 @@
 #include <stdio.h>
 #include <string.h>
 
-#include <param.h>
+#include <allParam.h>
 
 #include "test6.h"
 
index 26732623b131f2a9b9206607094e3b4277b90478..9b146f2eb5b91533063e874070786ad377a5c3a7 100644 (file)
@@ -1,7 +1,7 @@
 #ifndef TEST6_H
 #define TEST6_H
 
-#include <param.h>
+#include <allParam.h>
 
 int test6(const char *, const Param *);
 
index 8d5d8f4af1f343d17133fce6262e3c9607419d4e..ed73dc575972880945e324863dc8c59e2160d0b0 100644 (file)
@@ -2,7 +2,7 @@
 #include <string.h>
 #include <stdlib.h>
 
-#include <param.h>
+#include <allParam.h>
 
 #include "test7.h"
 
index 0ba604721372714f29fddf8d226025c1a8090f63..4eaf352950c30ef9816d2b4a4d3d9c082bbb8745 100644 (file)
@@ -1,7 +1,7 @@
 #ifndef TEST7_H
 #define TEST7_H
 
-#include <param.h>
+#include <allParam.h>
 
 #define NUM1 8
 
index 7cb83a1a7c84ed6de57eeb533c9c4becaac3f8e4..7a8711e7a269afe9cb5b2aa5490b58c0922718ae 100644 (file)
@@ -1,7 +1,7 @@
 #include <stdio.h>
 #include <string.h>
 
-#include <param.h>
+#include <allParam.h>
 
 #include "test8.h"
 
index 80127aebefb9c08e4a6659e302abb44ef6221e74..854f879650e85ee4ea4c4c12c81cbb136434bb72 100644 (file)
@@ -1,7 +1,7 @@
 #ifndef TEST8_H
 #define TEST8_H
 
-#include <param.h>
+#include <allParam.h>
 
 #define NUM2 32
 
index 69f017c5ca52f771dc6e21fad2a9a741a5942f16..2829d352fe60777c98f82759079b7d40ad47d058 100644 (file)
@@ -1,7 +1,7 @@
 #include <stdio.h>
 #include <string.h>
 
-#include <param.h>
+#include <allParam.h>
 
 #include "test9.h"
 
index c89886988b78fabec16215e41cb6f31cb57b40da..d880f40642ba31ad13da3b635252762d480bca65 100644 (file)
@@ -1,7 +1,7 @@
 #ifndef TEST9_H
 #define TEST9_H
 
-#include <param.h>
+#include <allParam.h>
 
 int test9(const char *, const Param *);