diff options
author | Dan Nicholson <dbn.lists@gmail.com> | 2009-06-19 06:37:42 -0700 |
---|---|---|
committer | Dan Nicholson <dbn.lists@gmail.com> | 2009-06-24 06:23:51 -0700 |
commit | 1437bd6170a9193be4fc20404a1a1a3beabadeba (patch) | |
tree | 2655c5043f8b5fe464ab6e1e800e433988d5bd62 /src | |
parent | 1eafe8b65abaab94037f93196ec1512ab822b858 (diff) |
Avoid redefined VERSION macro when including config.h
Diffstat (limited to 'src')
-rw-r--r-- | src/tet3/tcm/dtcm.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tet3/tcm/dtcm.c b/src/tet3/tcm/dtcm.c index ae4a3e67..cfe2fd80 100644 --- a/src/tet3/tcm/dtcm.c +++ b/src/tet3/tcm/dtcm.c @@ -178,9 +178,9 @@ static char srcFile[] = __FILE__; /* file name for error reporting */ #ifdef TET_LITE /* -LITE-CUT-LINE- */ -# define VERSION "3.3-lite" +# define TET_VERSION "3.3-lite" #else /* -START-LITE-CUT- */ -# define VERSION "3.3" +# define TET_VERSION "3.3" #endif /* -END-LITE-CUT- */ #define KILLWAIT 10 @@ -323,7 +323,7 @@ char **argv; } /* count number of IC's to be executed and output on TCM Start line */ - tet_tcmstart(VERSION, iccount); + tet_tcmstart(TET_VERSION, iccount); /* unexpected signals are fatal during startup */ setsigs(sigabandon); |