From 366231734e179d7b4d5d5c0164206d6209357a3a Mon Sep 17 00:00:00 2001 From: hades Date: Mon, 6 Nov 2000 23:43:10 +0000 Subject: [PATCH] *** empty log message *** --- allParam/Makefile | 5 +++++ allParam/ca/Makefile | 7 +++---- allParam/ca/caParam.c | 2 +- allParam/ca/caParam.h | 16 ++++++++-------- allParam/file/Makefile | 6 +++--- allParam/file/fileParam.c | 2 +- allParam/file/fileParam.h | 16 ++++++++-------- allParam/ora/Makefile | 12 ++++++------ allParam/ora/oraParam.h | 16 ++++++++-------- allParam/ora/oraParam.pc | 2 +- allParam/psql/Makefile | 6 +++--- allParam/psql/psqlParam.c | 2 +- allParam/psql/psqlParam.h | 16 ++++++++-------- allParam/tcl/Makefile | 6 +++--- allParam/tcl/tclParam.c | 2 +- allParam/tcl/tclParam.h | 16 ++++++++-------- allParam/test/suite.c | 2 +- allParam/test/test1.c | 2 +- allParam/test/test1.h | 2 +- allParam/test/test10.c | 2 +- allParam/test/test10.h | 2 +- allParam/test/test11.c | 2 +- allParam/test/test11.h | 2 +- allParam/test/test12.c | 2 +- allParam/test/test12.h | 2 +- allParam/test/test13.c | 2 +- allParam/test/test13.h | 2 +- allParam/test/test14.c | 2 +- allParam/test/test14.h | 2 +- allParam/test/test15.c | 2 +- allParam/test/test15.h | 2 +- allParam/test/test16.c | 2 +- allParam/test/test16.h | 2 +- allParam/test/test17.c | 2 +- allParam/test/test17.h | 2 +- allParam/test/test18.c | 2 +- allParam/test/test18.h | 2 +- allParam/test/test19.c | 2 +- allParam/test/test19.h | 2 +- allParam/test/test2.c | 2 +- allParam/test/test2.h | 2 +- allParam/test/test20.c | 2 +- allParam/test/test20.h | 2 +- allParam/test/test21.c | 2 +- allParam/test/test21.h | 2 +- allParam/test/test22.c | 2 +- allParam/test/test22.h | 2 +- allParam/test/test3.c | 2 +- allParam/test/test3.h | 2 +- allParam/test/test4.c | 2 +- allParam/test/test4.h | 2 +- allParam/test/test5.c | 2 +- allParam/test/test5.h | 2 +- allParam/test/test6.c | 2 +- allParam/test/test6.h | 2 +- allParam/test/test7.c | 2 +- allParam/test/test7.h | 2 +- allParam/test/test8.c | 2 +- allParam/test/test8.h | 2 +- allParam/test/test9.c | 2 +- allParam/test/test9.h | 2 +- 61 files changed, 113 insertions(+), 109 deletions(-) diff --git a/allParam/Makefile b/allParam/Makefile index 91cb59b..56df774 100644 --- a/allParam/Makefile +++ b/allParam/Makefile @@ -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 diff --git a/allParam/ca/Makefile b/allParam/ca/Makefile index 3dcd3ec..f5246f5 100644 --- a/allParam/ca/Makefile +++ b/allParam/ca/Makefile @@ -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 diff --git a/allParam/ca/caParam.c b/allParam/ca/caParam.c index 34c3538..1ba0efc 100644 --- a/allParam/ca/caParam.c +++ b/allParam/ca/caParam.c @@ -7,7 +7,7 @@ #include -#include "param.h" +#include "caParam.h" static void Param_copyToAllocMem(struct event_handler_args args); static void Param_returnPVName(const char *, const char *, char *); diff --git a/allParam/ca/caParam.h b/allParam/ca/caParam.h index 5ff9028..503696d 100644 --- a/allParam/ca/caParam.h +++ b/allParam/ca/caParam.h @@ -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 *); diff --git a/allParam/file/Makefile b/allParam/file/Makefile index 6494fc8..42f5845 100644 --- a/allParam/file/Makefile +++ b/allParam/file/Makefile @@ -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 diff --git a/allParam/file/fileParam.c b/allParam/file/fileParam.c index d4c65e6..4b4597c 100644 --- a/allParam/file/fileParam.c +++ b/allParam/file/fileParam.c @@ -7,7 +7,7 @@ #include #include -#include "param.h" +#include "fileParam.h" #define BUFFERSIZE 130 diff --git a/allParam/file/fileParam.h b/allParam/file/fileParam.h index f4922ab..10de076 100644 --- a/allParam/file/fileParam.h +++ b/allParam/file/fileParam.h @@ -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 *); diff --git a/allParam/ora/Makefile b/allParam/ora/Makefile index 7a66fb8..8519f60 100644 --- a/allParam/ora/Makefile +++ b/allParam/ora/Makefile @@ -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 diff --git a/allParam/ora/oraParam.h b/allParam/ora/oraParam.h index 371b6b1..316954a 100644 --- a/allParam/ora/oraParam.h +++ b/allParam/ora/oraParam.h @@ -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 *); diff --git a/allParam/ora/oraParam.pc b/allParam/ora/oraParam.pc index 4cc1a84..7d05f1a 100644 --- a/allParam/ora/oraParam.pc +++ b/allParam/ora/oraParam.pc @@ -8,7 +8,7 @@ #include #include -#include "param.h" +#include "oraParam.h" static void Param_rollback(); diff --git a/allParam/psql/Makefile b/allParam/psql/Makefile index 6a84cbc..4b9d0de 100644 --- a/allParam/psql/Makefile +++ b/allParam/psql/Makefile @@ -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 diff --git a/allParam/psql/psqlParam.c b/allParam/psql/psqlParam.c index 0326442..afcb1a9 100644 --- a/allParam/psql/psqlParam.c +++ b/allParam/psql/psqlParam.c @@ -7,7 +7,7 @@ #include -#include "param.h" +#include "psqlParam.h" static void Param_strerror(Param *, const char *); diff --git a/allParam/psql/psqlParam.h b/allParam/psql/psqlParam.h index 0447fb6..137f497 100644 --- a/allParam/psql/psqlParam.h +++ b/allParam/psql/psqlParam.h @@ -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 *); diff --git a/allParam/tcl/Makefile b/allParam/tcl/Makefile index c868867..e8e798d 100644 --- a/allParam/tcl/Makefile +++ b/allParam/tcl/Makefile @@ -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 diff --git a/allParam/tcl/tclParam.c b/allParam/tcl/tclParam.c index c76be3d..751ef3d 100644 --- a/allParam/tcl/tclParam.c +++ b/allParam/tcl/tclParam.c @@ -7,7 +7,7 @@ #include #include -#include "param.h" +#include "tclParam.h" static void Param_strerror(Param *, const char *); diff --git a/allParam/tcl/tclParam.h b/allParam/tcl/tclParam.h index e4b9451..af2345f 100644 --- a/allParam/tcl/tclParam.h +++ b/allParam/tcl/tclParam.h @@ -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 *); diff --git a/allParam/test/suite.c b/allParam/test/suite.c index 7a4974a..cd20d96 100644 --- a/allParam/test/suite.c +++ b/allParam/test/suite.c @@ -1,7 +1,7 @@ #include #include -#include +#include #include "test1.h" #include "test2.h" diff --git a/allParam/test/test1.c b/allParam/test/test1.c index b1600f9..d064a65 100644 --- a/allParam/test/test1.c +++ b/allParam/test/test1.c @@ -1,7 +1,7 @@ #include #include -#include +#include #include "test1.h" diff --git a/allParam/test/test1.h b/allParam/test/test1.h index d64f69e..3c59cfb 100644 --- a/allParam/test/test1.h +++ b/allParam/test/test1.h @@ -1,7 +1,7 @@ #ifndef TEST1_H #define TEST1_H -#include +#include int test1(const char *, const Param *); diff --git a/allParam/test/test10.c b/allParam/test/test10.c index ee67044..45456d4 100644 --- a/allParam/test/test10.c +++ b/allParam/test/test10.c @@ -1,7 +1,7 @@ #include #include -#include +#include #include "test10.h" diff --git a/allParam/test/test10.h b/allParam/test/test10.h index 4b9e218..494c275 100644 --- a/allParam/test/test10.h +++ b/allParam/test/test10.h @@ -1,7 +1,7 @@ #ifndef TEST10_H #define TEST10_H -#include +#include int test10(const char *, const Param *); diff --git a/allParam/test/test11.c b/allParam/test/test11.c index ba8ec23..bf07ed0 100644 --- a/allParam/test/test11.c +++ b/allParam/test/test11.c @@ -1,7 +1,7 @@ #include #include -#include +#include #include "test11.h" diff --git a/allParam/test/test11.h b/allParam/test/test11.h index 2550cb0..9018171 100644 --- a/allParam/test/test11.h +++ b/allParam/test/test11.h @@ -1,7 +1,7 @@ #ifndef TEST11_H #define TEST11_H -#include +#include int test11(const char *, const Param *); diff --git a/allParam/test/test12.c b/allParam/test/test12.c index 75b2b6a..15c51b5 100644 --- a/allParam/test/test12.c +++ b/allParam/test/test12.c @@ -1,7 +1,7 @@ #include #include -#include +#include #include "test12.h" diff --git a/allParam/test/test12.h b/allParam/test/test12.h index 4ca71e0..55d872b 100644 --- a/allParam/test/test12.h +++ b/allParam/test/test12.h @@ -1,7 +1,7 @@ #ifndef TEST12_H #define TEST12_H -#include +#include int test12(const char *, const Param *); diff --git a/allParam/test/test13.c b/allParam/test/test13.c index 508b8bf..38eea13 100644 --- a/allParam/test/test13.c +++ b/allParam/test/test13.c @@ -2,7 +2,7 @@ #include #include -#include +#include #include "test13.h" diff --git a/allParam/test/test13.h b/allParam/test/test13.h index 0cc5448..41b2a22 100644 --- a/allParam/test/test13.h +++ b/allParam/test/test13.h @@ -1,7 +1,7 @@ #ifndef TEST13_H #define TEST13_H -#include +#include #define NUM1 8 diff --git a/allParam/test/test14.c b/allParam/test/test14.c index 9469d43..70de9f3 100644 --- a/allParam/test/test14.c +++ b/allParam/test/test14.c @@ -1,7 +1,7 @@ #include #include -#include +#include #include "test14.h" diff --git a/allParam/test/test14.h b/allParam/test/test14.h index a0bd53b..b5d6bee 100644 --- a/allParam/test/test14.h +++ b/allParam/test/test14.h @@ -1,7 +1,7 @@ #ifndef TEST14_H #define TEST14_H -#include +#include #define NUM2 32 diff --git a/allParam/test/test15.c b/allParam/test/test15.c index cff7481..720e3c4 100644 --- a/allParam/test/test15.c +++ b/allParam/test/test15.c @@ -2,7 +2,7 @@ #include #include -#include +#include #include "test15.h" diff --git a/allParam/test/test15.h b/allParam/test/test15.h index 298af3e..fdbb051 100644 --- a/allParam/test/test15.h +++ b/allParam/test/test15.h @@ -1,7 +1,7 @@ #ifndef TEST15_H #define TEST15_H -#include +#include #define NUM1 8 #define NUM3 16 diff --git a/allParam/test/test16.c b/allParam/test/test16.c index 354a39a..ab733c9 100644 --- a/allParam/test/test16.c +++ b/allParam/test/test16.c @@ -1,7 +1,7 @@ #include #include -#include +#include #include "test16.h" diff --git a/allParam/test/test16.h b/allParam/test/test16.h index 02d02fe..5d3d1b5 100644 --- a/allParam/test/test16.h +++ b/allParam/test/test16.h @@ -1,7 +1,7 @@ #ifndef TEST16_H #define TEST16_H -#include +#include #define NUM2 32 #define NUM4 64 diff --git a/allParam/test/test17.c b/allParam/test/test17.c index d188443..22a9b5e 100644 --- a/allParam/test/test17.c +++ b/allParam/test/test17.c @@ -2,7 +2,7 @@ #include #include -#include +#include #include "test17.h" diff --git a/allParam/test/test17.h b/allParam/test/test17.h index f8a3d03..e1187d8 100644 --- a/allParam/test/test17.h +++ b/allParam/test/test17.h @@ -1,7 +1,7 @@ #ifndef TEST17_H #define TEST17_H -#include +#include #define NUM1 8 #define NUM5 4 diff --git a/allParam/test/test18.c b/allParam/test/test18.c index 4fb49e3..f41206f 100644 --- a/allParam/test/test18.c +++ b/allParam/test/test18.c @@ -1,7 +1,7 @@ #include #include -#include +#include #include "test18.h" diff --git a/allParam/test/test18.h b/allParam/test/test18.h index 9ad80d2..c11451b 100644 --- a/allParam/test/test18.h +++ b/allParam/test/test18.h @@ -1,7 +1,7 @@ #ifndef TEST18_H #define TEST18_H -#include +#include #define NUM2 32 #define NUM6 16 diff --git a/allParam/test/test19.c b/allParam/test/test19.c index ab2c4dc..2b5607b 100644 --- a/allParam/test/test19.c +++ b/allParam/test/test19.c @@ -2,7 +2,7 @@ #include #include -#include +#include #include "test19.h" diff --git a/allParam/test/test19.h b/allParam/test/test19.h index 0e2d5bb..f1ac665 100644 --- a/allParam/test/test19.h +++ b/allParam/test/test19.h @@ -1,7 +1,7 @@ #ifndef TEST19_H #define TEST19_H -#include +#include #define NUM2 32 diff --git a/allParam/test/test2.c b/allParam/test/test2.c index af3b82f..f34ffe8 100644 --- a/allParam/test/test2.c +++ b/allParam/test/test2.c @@ -1,7 +1,7 @@ #include #include -#include +#include #include "test2.h" diff --git a/allParam/test/test2.h b/allParam/test/test2.h index 9cd4a0b..f4d6fde 100644 --- a/allParam/test/test2.h +++ b/allParam/test/test2.h @@ -1,7 +1,7 @@ #ifndef TEST2_H #define TEST2_H -#include +#include int test2(const char *, const Param *); diff --git a/allParam/test/test20.c b/allParam/test/test20.c index 1c4484c..35506dc 100644 --- a/allParam/test/test20.c +++ b/allParam/test/test20.c @@ -1,7 +1,7 @@ #include #include -#include +#include #include "test20.h" diff --git a/allParam/test/test20.h b/allParam/test/test20.h index c4d0b6e..754e555 100644 --- a/allParam/test/test20.h +++ b/allParam/test/test20.h @@ -1,7 +1,7 @@ #ifndef TEST20_H #define TEST20_H -#include +#include #define NUM1 8 diff --git a/allParam/test/test21.c b/allParam/test/test21.c index 9c13331..76277d1 100644 --- a/allParam/test/test21.c +++ b/allParam/test/test21.c @@ -2,7 +2,7 @@ #include #include -#include +#include #include "test21.h" diff --git a/allParam/test/test21.h b/allParam/test/test21.h index ccc38ed..30e078c 100644 --- a/allParam/test/test21.h +++ b/allParam/test/test21.h @@ -1,7 +1,7 @@ #ifndef TEST21_H #define TEST21_H -#include +#include #define NUM1 8 diff --git a/allParam/test/test22.c b/allParam/test/test22.c index 7d4d7f8..84dc726 100644 --- a/allParam/test/test22.c +++ b/allParam/test/test22.c @@ -1,7 +1,7 @@ #include #include -#include +#include #include "test22.h" diff --git a/allParam/test/test22.h b/allParam/test/test22.h index 9a91156..147f567 100644 --- a/allParam/test/test22.h +++ b/allParam/test/test22.h @@ -1,7 +1,7 @@ #ifndef TEST22_H #define TEST22_H -#include +#include int test22(const char *, const Param *); diff --git a/allParam/test/test3.c b/allParam/test/test3.c index 340d053..d8f5abd 100644 --- a/allParam/test/test3.c +++ b/allParam/test/test3.c @@ -2,7 +2,7 @@ #include #include -#include +#include #include "test3.h" diff --git a/allParam/test/test3.h b/allParam/test/test3.h index 4d053dd..0ad4432 100644 --- a/allParam/test/test3.h +++ b/allParam/test/test3.h @@ -1,7 +1,7 @@ #ifndef TEST3_H #define TEST3_H -#include +#include #define NUM1 8 diff --git a/allParam/test/test4.c b/allParam/test/test4.c index f97a0f4..3941dfb 100644 --- a/allParam/test/test4.c +++ b/allParam/test/test4.c @@ -1,7 +1,7 @@ #include #include -#include +#include #include "test4.h" diff --git a/allParam/test/test4.h b/allParam/test/test4.h index 95e178d..d293afb 100644 --- a/allParam/test/test4.h +++ b/allParam/test/test4.h @@ -1,7 +1,7 @@ #ifndef TEST4_H #define TEST4_H -#include +#include #define NUM2 32 diff --git a/allParam/test/test5.c b/allParam/test/test5.c index 3d3df18..1c2d450 100644 --- a/allParam/test/test5.c +++ b/allParam/test/test5.c @@ -1,7 +1,7 @@ #include #include -#include +#include #include "test5.h" diff --git a/allParam/test/test5.h b/allParam/test/test5.h index 5459560..c4a85f6 100644 --- a/allParam/test/test5.h +++ b/allParam/test/test5.h @@ -1,7 +1,7 @@ #ifndef TEST5_H #define TEST5_H -#include +#include int test5(const char *, const Param *); diff --git a/allParam/test/test6.c b/allParam/test/test6.c index 99cb60e..4967ebb 100644 --- a/allParam/test/test6.c +++ b/allParam/test/test6.c @@ -1,7 +1,7 @@ #include #include -#include +#include #include "test6.h" diff --git a/allParam/test/test6.h b/allParam/test/test6.h index 2673262..9b146f2 100644 --- a/allParam/test/test6.h +++ b/allParam/test/test6.h @@ -1,7 +1,7 @@ #ifndef TEST6_H #define TEST6_H -#include +#include int test6(const char *, const Param *); diff --git a/allParam/test/test7.c b/allParam/test/test7.c index 8d5d8f4..ed73dc5 100644 --- a/allParam/test/test7.c +++ b/allParam/test/test7.c @@ -2,7 +2,7 @@ #include #include -#include +#include #include "test7.h" diff --git a/allParam/test/test7.h b/allParam/test/test7.h index 0ba6047..4eaf352 100644 --- a/allParam/test/test7.h +++ b/allParam/test/test7.h @@ -1,7 +1,7 @@ #ifndef TEST7_H #define TEST7_H -#include +#include #define NUM1 8 diff --git a/allParam/test/test8.c b/allParam/test/test8.c index 7cb83a1..7a8711e 100644 --- a/allParam/test/test8.c +++ b/allParam/test/test8.c @@ -1,7 +1,7 @@ #include #include -#include +#include #include "test8.h" diff --git a/allParam/test/test8.h b/allParam/test/test8.h index 80127ae..854f879 100644 --- a/allParam/test/test8.h +++ b/allParam/test/test8.h @@ -1,7 +1,7 @@ #ifndef TEST8_H #define TEST8_H -#include +#include #define NUM2 32 diff --git a/allParam/test/test9.c b/allParam/test/test9.c index 69f017c..2829d35 100644 --- a/allParam/test/test9.c +++ b/allParam/test/test9.c @@ -1,7 +1,7 @@ #include #include -#include +#include #include "test9.h" diff --git a/allParam/test/test9.h b/allParam/test/test9.h index c898869..d880f40 100644 --- a/allParam/test/test9.h +++ b/allParam/test/test9.h @@ -1,7 +1,7 @@ #ifndef TEST9_H #define TEST9_H -#include +#include int test9(const char *, const Param *); -- 2.43.0