summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-05-10 12:35:22 +0000
committergoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-05-10 12:35:22 +0000
commitddd5efc1b169cbbcbc60f19898455d223591fa5e (patch)
treec772a68297084fde5e8def9a5bc2392c19296bb6
parent6039777605881b19b6bb3821a8e97d370336ed67 (diff)
Making rcsid strings constant - PR 669.
Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@2159 17b73243-c579-4c4c-a9d2-2d5706c11dac
-rw-r--r--src/IO/FortranBindingsIO.c2
-rw-r--r--src/IO/IOMethods.c2
-rw-r--r--src/IO/OverloadIO.c2
-rw-r--r--src/comm/CactusDefaultComm.c2
-rw-r--r--src/comm/CactusSync.c2
-rw-r--r--src/comm/Interp.c2
-rw-r--r--src/comm/OverloadComm.c2
-rw-r--r--src/comm/Reduction.c2
-rw-r--r--src/datestamp.c2
-rw-r--r--src/main/ActiveThorns.c2
-rw-r--r--src/main/Banner.c2
-rw-r--r--src/main/CactusDefaultEvolve.c2
-rw-r--r--src/main/CactusDefaultInitialise.c2
-rw-r--r--src/main/CactusDefaultMainLoopIndex.c2
-rw-r--r--src/main/CactusDefaultShutdown.c2
-rw-r--r--src/main/CallStartupFunctions.c2
-rw-r--r--src/main/CommandLine.c2
-rw-r--r--src/main/Complex.c2
-rw-r--r--src/main/ConfigData.c2
-rw-r--r--src/main/Coord.c2
-rw-r--r--src/main/DefaultTimers.c2
-rw-r--r--src/main/Dummies.c2
-rw-r--r--src/main/FortranWrappers.c2
-rw-r--r--src/main/GHExtensions.c2
-rw-r--r--src/main/Groups.c2
-rw-r--r--src/main/GroupsOnGH.c2
-rw-r--r--src/main/InitialiseCactus.c2
-rw-r--r--src/main/InitialiseDataStructures.c2
-rw-r--r--src/main/MainUtils.c2
-rw-r--r--src/main/Names.c2
-rw-r--r--src/main/OverloadMain.c2
-rw-r--r--src/main/Parameters.c2
-rw-r--r--src/main/ProcessCommandLine.c2
-rw-r--r--src/main/ProcessEnvironment.c2
-rw-r--r--src/main/ProcessParameterDatabase.c2
-rw-r--r--src/main/RecordImplementation.c2
-rw-r--r--src/main/ScheduleInterface.c2
-rw-r--r--src/main/SetParams.c2
-rw-r--r--src/main/SetupCache.c2
-rw-r--r--src/main/ShutdownCactus.c2
-rw-r--r--src/main/Stagger.c2
-rw-r--r--src/main/Startup.c2
-rw-r--r--src/main/Subsystems.c2
-rw-r--r--src/main/Termination.c2
-rw-r--r--src/main/Traverse.c2
-rw-r--r--src/main/WarnLevel.c2
-rw-r--r--src/schedule/ScheduleCreater.c2
-rw-r--r--src/schedule/ScheduleSorter.c2
-rw-r--r--src/schedule/ScheduleTraverse.c2
-rw-r--r--src/util/BinaryTree.c2
-rw-r--r--src/util/Cache.c2
-rw-r--r--src/util/CactusTimers.c2
-rw-r--r--src/util/File.c2
-rw-r--r--src/util/Hash.c2
-rw-r--r--src/util/Malloc.c2
-rw-r--r--src/util/Misc.c2
-rw-r--r--src/util/Network.c2
-rw-r--r--src/util/ParseFile.c2
-rw-r--r--src/util/RegisterKeyedFunction.c2
-rw-r--r--src/util/SKBinTree.c2
-rw-r--r--src/util/StoreHandledData.c2
-rw-r--r--src/util/StoreKeyedData.c2
-rw-r--r--src/util/StoreNamedData.c2
-rw-r--r--src/util/String.c2
-rw-r--r--src/util/Time.c2
65 files changed, 65 insertions, 65 deletions
diff --git a/src/IO/FortranBindingsIO.c b/src/IO/FortranBindingsIO.c
index 5002308f..129ae496 100644
--- a/src/IO/FortranBindingsIO.c
+++ b/src/IO/FortranBindingsIO.c
@@ -13,7 +13,7 @@
#include "cctk_IO.h"
#include "cctk_IOMethods.h"
-static char *rcsid = "$Header$";
+static const char *rcsid = "$Header$";
CCTK_FILEVERSION(IO_FortranBindingsIO_c)
diff --git a/src/IO/IOMethods.c b/src/IO/IOMethods.c
index d4ddc1b6..10921588 100644
--- a/src/IO/IOMethods.c
+++ b/src/IO/IOMethods.c
@@ -21,7 +21,7 @@
#include "cctk_FortranString.h"
#include "cctk_IO.h"
-static char *rcsid = "$Header$";
+static const char *rcsid = "$Header$";
CCTK_FILEVERSION (IO_IOMethods_c)
diff --git a/src/IO/OverloadIO.c b/src/IO/OverloadIO.c
index f607408c..cff4eebe 100644
--- a/src/IO/OverloadIO.c
+++ b/src/IO/OverloadIO.c
@@ -18,7 +18,7 @@
#include "OverloadMacros.h"
#include "cctk_WarnLevel.h"
-static char *rcsid="$Header$";
+static const char *rcsid="$Header$";
CCTK_FILEVERSION (IO_OverloadIO_c)
diff --git a/src/comm/CactusDefaultComm.c b/src/comm/CactusDefaultComm.c
index 30d921ed..959693ac 100644
--- a/src/comm/CactusDefaultComm.c
+++ b/src/comm/CactusDefaultComm.c
@@ -26,7 +26,7 @@
#include "mpi.h"
#endif
-static char *rcsid = "$Header$";
+static const char *rcsid = "$Header$";
CCTK_FILEVERSION(comm_CactusDefaultComm_c)
diff --git a/src/comm/CactusSync.c b/src/comm/CactusSync.c
index c401aab5..9cb9d11b 100644
--- a/src/comm/CactusSync.c
+++ b/src/comm/CactusSync.c
@@ -21,7 +21,7 @@
#include "cctk_Groups.h"
#include "cctk_Sync.h"
-static char *rcsid = "$Header$";
+static const char *rcsid = "$Header$";
CCTK_FILEVERSION(comm_CactusSync_c)
diff --git a/src/comm/Interp.c b/src/comm/Interp.c
index f3129d76..e4cbc78f 100644
--- a/src/comm/Interp.c
+++ b/src/comm/Interp.c
@@ -31,7 +31,7 @@
#include "cctk_WarnLevel.h"
#include "cctk_Coord.h"
-static char *rcsid = "$Header$";
+static const char *rcsid = "$Header$";
CCTK_FILEVERSION(comm_Interp_c)
diff --git a/src/comm/OverloadComm.c b/src/comm/OverloadComm.c
index ad67682e..1bb0cfa8 100644
--- a/src/comm/OverloadComm.c
+++ b/src/comm/OverloadComm.c
@@ -19,7 +19,7 @@
#include "OverloadMacros.h"
#include "cctk_WarnLevel.h"
-static char *rcsid="$Header$";
+static const char *rcsid="$Header$";
CCTK_FILEVERSION(comm_OverloadComm_c)
diff --git a/src/comm/Reduction.c b/src/comm/Reduction.c
index ec7181e7..5e4e4667 100644
--- a/src/comm/Reduction.c
+++ b/src/comm/Reduction.c
@@ -23,7 +23,7 @@
#include "StoreHandledData.h"
-static char *rcsid = "$Header$";
+static const char *rcsid = "$Header$";
CCTK_FILEVERSION(comm_Reduction_c)
diff --git a/src/datestamp.c b/src/datestamp.c
index 40a215bb..73ce02eb 100644
--- a/src/datestamp.c
+++ b/src/datestamp.c
@@ -13,7 +13,7 @@
#include "cctk_Version.h"
#include "cctki_version.h"
-static char *rcsid = "$Header$";
+static const char *rcsid = "$Header$";
const char *CCTKi_version_src_datestamp_c(void);
const char *CCTKi_version_src_datestamp_c(void) { return rcsid; }
diff --git a/src/main/ActiveThorns.c b/src/main/ActiveThorns.c
index 4e3ae07e..82707906 100644
--- a/src/main/ActiveThorns.c
+++ b/src/main/ActiveThorns.c
@@ -19,7 +19,7 @@
#include "cctk_ActiveThorns.h"
#include "cctk_FortranString.h"
-static char *rcsid = "$Header$";
+static const char *rcsid = "$Header$";
CCTK_FILEVERSION(main_ActiveThorns_c)
diff --git a/src/main/Banner.c b/src/main/Banner.c
index e57ab7b4..7076164b 100644
--- a/src/main/Banner.c
+++ b/src/main/Banner.c
@@ -20,7 +20,7 @@
#include "cctk_FortranString.h"
#include "cctk_Parameter.h"
-static char *rcsid = "$Header$";
+static const char *rcsid = "$Header$";
CCTK_FILEVERSION(main_Banner_c)
diff --git a/src/main/CactusDefaultEvolve.c b/src/main/CactusDefaultEvolve.c
index e6ffe9da..094b2b8b 100644
--- a/src/main/CactusDefaultEvolve.c
+++ b/src/main/CactusDefaultEvolve.c
@@ -19,7 +19,7 @@
#include "cctk_Main.h"
#include "cctk_IO.h"
-static char *rcsid="$Header$";
+static const char *rcsid="$Header$";
CCTK_FILEVERSION(main_CactusDefaultEvolve_c)
diff --git a/src/main/CactusDefaultInitialise.c b/src/main/CactusDefaultInitialise.c
index 711b88a0..0784a7d9 100644
--- a/src/main/CactusDefaultInitialise.c
+++ b/src/main/CactusDefaultInitialise.c
@@ -24,7 +24,7 @@
#include "CactusMainDefaults.h"
#include "CactusCommFunctions.h"
-static char *rcsid = "$Id$";
+static const char *rcsid = "$Id$";
CCTK_FILEVERSION(main_CactusDefaultInitialise_c)
diff --git a/src/main/CactusDefaultMainLoopIndex.c b/src/main/CactusDefaultMainLoopIndex.c
index 5855d3ab..6de38f74 100644
--- a/src/main/CactusDefaultMainLoopIndex.c
+++ b/src/main/CactusDefaultMainLoopIndex.c
@@ -9,7 +9,7 @@
#include "cctk.h"
-static char *rcsid = "$Header$";
+static const char *rcsid = "$Header$";
CCTK_FILEVERSION(main_CactusDefaultMainLoopIndex_c)
diff --git a/src/main/CactusDefaultShutdown.c b/src/main/CactusDefaultShutdown.c
index 8749d68f..69382106 100644
--- a/src/main/CactusDefaultShutdown.c
+++ b/src/main/CactusDefaultShutdown.c
@@ -19,7 +19,7 @@
#include "mpi.h"
#endif
-static char *rcsid = "$Header$";
+static const char *rcsid = "$Header$";
CCTK_FILEVERSION(main_CactusDefaultShutdown_c)
diff --git a/src/main/CallStartupFunctions.c b/src/main/CallStartupFunctions.c
index 1116b4ee..48cbc592 100644
--- a/src/main/CallStartupFunctions.c
+++ b/src/main/CallStartupFunctions.c
@@ -14,7 +14,7 @@
#include "cctk_Flesh.h"
#include "cctk_Schedule.h"
-static char *rcsid = "$Header$";
+static const char *rcsid = "$Header$";
CCTK_FILEVERSION(main_CallStartupFunctions_c)
diff --git a/src/main/CommandLine.c b/src/main/CommandLine.c
index 24118800..a1f6323a 100644
--- a/src/main/CommandLine.c
+++ b/src/main/CommandLine.c
@@ -33,7 +33,7 @@
#include "cctk_Parameter.h"
-static char *rcsid = "$Header$";
+static const char *rcsid = "$Header$";
CCTK_FILEVERSION(main_CommandLine_c)
diff --git a/src/main/Complex.c b/src/main/Complex.c
index 07114d57..b39c4118 100644
--- a/src/main/Complex.c
+++ b/src/main/Complex.c
@@ -14,7 +14,7 @@
#include "cctk_Complex.h"
#include "cctk_WarnLevel.h"
-static char *rcsid = "$Header$";
+static const char *rcsid = "$Header$";
CCTK_FILEVERSION(main_Complex_c)
diff --git a/src/main/ConfigData.c b/src/main/ConfigData.c
index 36112afe..ec0fb572 100644
--- a/src/main/ConfigData.c
+++ b/src/main/ConfigData.c
@@ -13,7 +13,7 @@
#include "cctk_Flesh.h"
-static char *rcsid = "$Header$";
+static const char *rcsid = "$Header$";
CCTK_FILEVERSION(main_ConfigData_c)
diff --git a/src/main/Coord.c b/src/main/Coord.c
index 4fa217ad..69ab3448 100644
--- a/src/main/Coord.c
+++ b/src/main/Coord.c
@@ -23,7 +23,7 @@
#include "StoreHandledData.h"
#include "ErrorCodes.h"
-static char *rcsid = "$Header$";
+static const char *rcsid = "$Header$";
CCTK_FILEVERSION(main_Coord_c)
diff --git a/src/main/DefaultTimers.c b/src/main/DefaultTimers.c
index 220a11fb..9eeca294 100644
--- a/src/main/DefaultTimers.c
+++ b/src/main/DefaultTimers.c
@@ -29,7 +29,7 @@
#include "CactusTimers.h"
-static char *rcsid = "$Header$";
+static const char *rcsid = "$Header$";
CCTK_FILEVERSION(main_DefaultTimers_c)
diff --git a/src/main/Dummies.c b/src/main/Dummies.c
index 39f03bf9..79a46011 100644
--- a/src/main/Dummies.c
+++ b/src/main/Dummies.c
@@ -10,7 +10,7 @@
#include "Dummies.h"
#include "cctk_Flesh.h"
-static char *rcsid = "$Header$";
+static const char *rcsid = "$Header$";
CCTK_FILEVERSION(main_Dummies_c)
diff --git a/src/main/FortranWrappers.c b/src/main/FortranWrappers.c
index 3ebed5c6..9238548e 100644
--- a/src/main/FortranWrappers.c
+++ b/src/main/FortranWrappers.c
@@ -15,7 +15,7 @@
#include "StoreNamedData.h"
-static char *rcsid = "$Header$";
+static const char *rcsid = "$Header$";
CCTK_FILEVERSION(main_FortranWrappers_c)
diff --git a/src/main/GHExtensions.c b/src/main/GHExtensions.c
index 1e34a688..fa507033 100644
--- a/src/main/GHExtensions.c
+++ b/src/main/GHExtensions.c
@@ -19,7 +19,7 @@
#include "StoreHandledData.h"
#include "cctk_WarnLevel.h"
-static char *rcsid = "$Header$";
+static const char *rcsid = "$Header$";
CCTK_FILEVERSION(main_GHExtensions_c)
diff --git a/src/main/Groups.c b/src/main/Groups.c
index f541deaf..2ca4d336 100644
--- a/src/main/Groups.c
+++ b/src/main/Groups.c
@@ -26,7 +26,7 @@
/*#define DEBUG_GROUPS*/
-static char *rcsid = "$Header$";
+static const char *rcsid = "$Header$";
CCTK_FILEVERSION(main_Groups_c)
diff --git a/src/main/GroupsOnGH.c b/src/main/GroupsOnGH.c
index 2876eb47..50c91413 100644
--- a/src/main/GroupsOnGH.c
+++ b/src/main/GroupsOnGH.c
@@ -20,7 +20,7 @@
#include "cctk_Misc.h"
#include "cctk_WarnLevel.h"
-static char *rcsid = "$Header$";
+static const char *rcsid = "$Header$";
CCTK_FILEVERSION(main_GroupsOnGH_c)
diff --git a/src/main/InitialiseCactus.c b/src/main/InitialiseCactus.c
index efad6a52..efb69cb9 100644
--- a/src/main/InitialiseCactus.c
+++ b/src/main/InitialiseCactus.c
@@ -22,7 +22,7 @@
#include "cctki_Schedule.h"
-static char *rcsid = "$Header$";
+static const char *rcsid = "$Header$";
CCTK_FILEVERSION(main_InitialiseCactus_c)
diff --git a/src/main/InitialiseDataStructures.c b/src/main/InitialiseDataStructures.c
index 8c4b7da2..092e2ecf 100644
--- a/src/main/InitialiseDataStructures.c
+++ b/src/main/InitialiseDataStructures.c
@@ -17,7 +17,7 @@
#include "cctki_ActiveThorns.h"
#include "cctki_Cache.h"
-static char *rcsid = "$Header$";
+static const char *rcsid = "$Header$";
CCTK_FILEVERSION(main_InitialiseDataStructures_c)
diff --git a/src/main/MainUtils.c b/src/main/MainUtils.c
index ba9322ce..ac05d1e6 100644
--- a/src/main/MainUtils.c
+++ b/src/main/MainUtils.c
@@ -15,7 +15,7 @@
#include "cctk_Schedule.h"
#include "cctk_Parameter.h"
-static char *rcsid = "$Header$";
+static const char *rcsid = "$Header$";
CCTK_FILEVERSION(main_MainUtils_c)
diff --git a/src/main/Names.c b/src/main/Names.c
index 75441f0c..1998e6f3 100644
--- a/src/main/Names.c
+++ b/src/main/Names.c
@@ -16,7 +16,7 @@
#include "cctk_Flesh.h"
#include "util_Hash.h"
-static char *rcsid="$Header$";
+static const char *rcsid="$Header$";
CCTK_FILEVERSION(main_Names_c)
diff --git a/src/main/OverloadMain.c b/src/main/OverloadMain.c
index e8586053..7bf038c9 100644
--- a/src/main/OverloadMain.c
+++ b/src/main/OverloadMain.c
@@ -18,7 +18,7 @@
#include "cctk_WarnLevel.h"
#include "OverloadMacros.h"
-static char *rcsid="$Header$";
+static const char *rcsid="$Header$";
CCTK_FILEVERSION(main_OverloadMain_c)
diff --git a/src/main/Parameters.c b/src/main/Parameters.c
index 78452bda..e1d7c3f7 100644
--- a/src/main/Parameters.c
+++ b/src/main/Parameters.c
@@ -31,7 +31,7 @@
#include "cctk_GNU.h"
-static char *rcsid="$Header$";
+static const char *rcsid="$Header$";
CCTK_FILEVERSION(main_Parameters_c)
diff --git a/src/main/ProcessCommandLine.c b/src/main/ProcessCommandLine.c
index db19d02f..973d5cab 100644
--- a/src/main/ProcessCommandLine.c
+++ b/src/main/ProcessCommandLine.c
@@ -18,7 +18,7 @@
#include "CommandLine.h"
-static char *rcsid = "$Header$";
+static const char *rcsid = "$Header$";
CCTK_FILEVERSION(main_ProcessCommandLine_c)
diff --git a/src/main/ProcessEnvironment.c b/src/main/ProcessEnvironment.c
index d82be440..8e561189 100644
--- a/src/main/ProcessEnvironment.c
+++ b/src/main/ProcessEnvironment.c
@@ -17,7 +17,7 @@
#include "mpi.h"
#endif
-static char *rcsid = "$Header$";
+static const char *rcsid = "$Header$";
CCTK_FILEVERSION(main_ProcessEnvironment_c)
diff --git a/src/main/ProcessParameterDatabase.c b/src/main/ProcessParameterDatabase.c
index eaf80c8b..20737769 100644
--- a/src/main/ProcessParameterDatabase.c
+++ b/src/main/ProcessParameterDatabase.c
@@ -17,7 +17,7 @@
#include "cctki_Parameter.h"
#include "ParameterData.h"
-static char *rcsid = "$Header$";
+static const char *rcsid = "$Header$";
CCTK_FILEVERSION(main_ProcessParameterDatabase_c)
diff --git a/src/main/RecordImplementation.c b/src/main/RecordImplementation.c
index 84cb1f07..0f283dda 100644
--- a/src/main/RecordImplementation.c
+++ b/src/main/RecordImplementation.c
@@ -15,7 +15,7 @@
#include "StoreNamedData.h"
-static char *rcsid = "$Header$";
+static const char *rcsid = "$Header$";
CCTK_FILEVERSION(main_RecordImplementation_c)
diff --git a/src/main/ScheduleInterface.c b/src/main/ScheduleInterface.c
index e5fa242a..a6b26146 100644
--- a/src/main/ScheduleInterface.c
+++ b/src/main/ScheduleInterface.c
@@ -32,7 +32,7 @@
#include "CactusTimers.h"
-static char *rcsid = "$Header$";
+static const char *rcsid = "$Header$";
CCTK_FILEVERSION(main_ScheduleInterface_c)
diff --git a/src/main/SetParams.c b/src/main/SetParams.c
index 5d3e5f38..26776e6e 100644
--- a/src/main/SetParams.c
+++ b/src/main/SetParams.c
@@ -26,7 +26,7 @@
#include "ParameterBindings.h"
-static char *rcsid = "$Header$";
+static const char *rcsid = "$Header$";
CCTK_FILEVERSION(main_SetParams_c)
diff --git a/src/main/SetupCache.c b/src/main/SetupCache.c
index 2918e70c..f0bd427c 100644
--- a/src/main/SetupCache.c
+++ b/src/main/SetupCache.c
@@ -16,7 +16,7 @@
#include "cctki_Cache.h"
-static char *rcsid = "$Header$";
+static const char *rcsid = "$Header$";
CCTK_FILEVERSION(main_SetupCache_c)
diff --git a/src/main/ShutdownCactus.c b/src/main/ShutdownCactus.c
index 65965b12..95409e9f 100644
--- a/src/main/ShutdownCactus.c
+++ b/src/main/ShutdownCactus.c
@@ -15,7 +15,7 @@
#include "cctk_Parameter.h"
#include "cctk_Schedule.h"
-static char *rcsid = "$Header$";
+static const char *rcsid = "$Header$";
CCTK_FILEVERSION(main_ShutdownCactus_c)
diff --git a/src/main/Stagger.c b/src/main/Stagger.c
index ae930675..957bc653 100644
--- a/src/main/Stagger.c
+++ b/src/main/Stagger.c
@@ -22,7 +22,7 @@
#include "cctk_Stagger.h"
#include "cctki_Stagger.h"
-static char *rcsid = "$Header$";
+static const char *rcsid = "$Header$";
CCTK_FILEVERSION(main_Stagger_c)
diff --git a/src/main/Startup.c b/src/main/Startup.c
index a12623a2..c5066e67 100644
--- a/src/main/Startup.c
+++ b/src/main/Startup.c
@@ -9,7 +9,7 @@
#include "cctk_Flesh.h"
-static char *rcsid = "$Header$";
+static const char *rcsid = "$Header$";
CCTK_FILEVERSION(main_Startup_c)
diff --git a/src/main/Subsystems.c b/src/main/Subsystems.c
index 4400dc01..b8e21f56 100644
--- a/src/main/Subsystems.c
+++ b/src/main/Subsystems.c
@@ -11,7 +11,7 @@
#include "cctk_Flesh.h"
#include "CactusRegister.h"
-static char *rcsid = "$Header$";
+static const char *rcsid = "$Header$";
CCTK_FILEVERSION(main_Subsystems_c)
diff --git a/src/main/Termination.c b/src/main/Termination.c
index 152efa53..be317acf 100644
--- a/src/main/Termination.c
+++ b/src/main/Termination.c
@@ -17,7 +17,7 @@
#include "cctk_Main.h"
#include "cctk_IO.h"
-static char *rcsid="$Header$";
+static const char *rcsid="$Header$";
CCTK_FILEVERSION(main_Termination_c)
diff --git a/src/main/Traverse.c b/src/main/Traverse.c
index 2d0853ec..c975b482 100644
--- a/src/main/Traverse.c
+++ b/src/main/Traverse.c
@@ -13,7 +13,7 @@
#include "cctk_Flesh.h"
#include "cctki_GHExtensions.h"
-static char *rcsid="$Header$";
+static const char *rcsid="$Header$";
CCTK_FILEVERSION(main_Traverse_c)
diff --git a/src/main/WarnLevel.c b/src/main/WarnLevel.c
index fa145589..6a6f2b1d 100644
--- a/src/main/WarnLevel.c
+++ b/src/main/WarnLevel.c
@@ -23,7 +23,7 @@
#include "cctk_WarnLevel.h"
#include "cctki_WarnLevel.h"
-static char *rcsid = "$Header$";
+static const char *rcsid = "$Header$";
CCTK_FILEVERSION(main_WarnLevel_c)
diff --git a/src/schedule/ScheduleCreater.c b/src/schedule/ScheduleCreater.c
index 07e0f948..61d776a2 100644
--- a/src/schedule/ScheduleCreater.c
+++ b/src/schedule/ScheduleCreater.c
@@ -18,7 +18,7 @@
#include "StoreHandledData.h"
#include "Schedule.h"
-static char *rcsid="$Header$";
+static const char *rcsid="$Header$";
CCTK_FILEVERSION(schedule_ScheduleCreater_c)
diff --git a/src/schedule/ScheduleSorter.c b/src/schedule/ScheduleSorter.c
index 43c27af0..37f42e66 100644
--- a/src/schedule/ScheduleSorter.c
+++ b/src/schedule/ScheduleSorter.c
@@ -14,7 +14,7 @@
#include "cctk_Flesh.h"
#include "Schedule.h"
-static char *rcsid = "$Header$";
+static const char *rcsid = "$Header$";
CCTK_FILEVERSION(schedule_ScheduleSorter_c)
diff --git a/src/schedule/ScheduleTraverse.c b/src/schedule/ScheduleTraverse.c
index 78e97306..b0b6b736 100644
--- a/src/schedule/ScheduleTraverse.c
+++ b/src/schedule/ScheduleTraverse.c
@@ -17,7 +17,7 @@
#include "StoreHandledData.h"
#include "Schedule.h"
-static char *rcsid = "$Header$";
+static const char *rcsid = "$Header$";
CCTK_FILEVERSION(schedule_ScheduleTraverse_c)
diff --git a/src/util/BinaryTree.c b/src/util/BinaryTree.c
index f24970bc..bf148310 100644
--- a/src/util/BinaryTree.c
+++ b/src/util/BinaryTree.c
@@ -15,7 +15,7 @@
#include "cctk_Flesh.h"
#include "util_BinaryTree.h"
-static char *rcsid = "$Header$";
+static const char *rcsid = "$Header$";
CCTK_FILEVERSION(util_BinaryTree_c)
diff --git a/src/util/Cache.c b/src/util/Cache.c
index 7eac303a..95309c02 100644
--- a/src/util/Cache.c
+++ b/src/util/Cache.c
@@ -14,7 +14,7 @@
#include "cctki_Cache.h"
#include "cctk_Flesh.h"
-static char *rcsid = "$Header$";
+static const char *rcsid = "$Header$";
CCTK_FILEVERSION(util_Cache_c)
diff --git a/src/util/CactusTimers.c b/src/util/CactusTimers.c
index 363c345c..3c122d0c 100644
--- a/src/util/CactusTimers.c
+++ b/src/util/CactusTimers.c
@@ -16,7 +16,7 @@
#include "StoreHandledData.h"
-static char *rcsid = "$Header$";
+static const char *rcsid = "$Header$";
CCTK_FILEVERSION(util_CactusTimers_c)
diff --git a/src/util/File.c b/src/util/File.c
index 2d4cbf6f..47efd98a 100644
--- a/src/util/File.c
+++ b/src/util/File.c
@@ -20,7 +20,7 @@
#include "util_String.h"
-static char *rcsid = "$Header$";
+static const char *rcsid = "$Header$";
CCTK_FILEVERSION(util_File_c)
diff --git a/src/util/Hash.c b/src/util/Hash.c
index 610c559b..a721784a 100644
--- a/src/util/Hash.c
+++ b/src/util/Hash.c
@@ -15,7 +15,7 @@
#include "util_Hash.h"
#include "cctk_Flesh.h"
-static char *rcsid = "$Header$";
+static const char *rcsid = "$Header$";
CCTK_FILEVERSION(util_Hash_c)
diff --git a/src/util/Malloc.c b/src/util/Malloc.c
index 4f2f0027..cd67bf88 100644
--- a/src/util/Malloc.c
+++ b/src/util/Malloc.c
@@ -43,7 +43,7 @@
#define free free
#endif
-static char *rcsid = "$Header$";
+static const char *rcsid = "$Header$";
CCTK_FILEVERSION(util_Malloc_c)
diff --git a/src/util/Misc.c b/src/util/Misc.c
index de95f507..8d09006f 100644
--- a/src/util/Misc.c
+++ b/src/util/Misc.c
@@ -31,7 +31,7 @@
#include "cctk_FortranString.h"
#include "cctk_WarnLevel.h"
-static char *rcsid = "$Header$";
+static const char *rcsid = "$Header$";
CCTK_FILEVERSION(util_Misc_c)
diff --git a/src/util/Network.c b/src/util/Network.c
index ecb27722..4f797fd2 100644
--- a/src/util/Network.c
+++ b/src/util/Network.c
@@ -22,7 +22,7 @@
#include <winsock2.h>
#endif /* HAVE_WINSOCK2_H */
-static char *rcsid = "$Header$";
+static const char *rcsid = "$Header$";
CCTK_FILEVERSION(util_Network_c)
diff --git a/src/util/ParseFile.c b/src/util/ParseFile.c
index 90477fbc..2bd57e3f 100644
--- a/src/util/ParseFile.c
+++ b/src/util/ParseFile.c
@@ -23,7 +23,7 @@
#include <assert.h>
#endif
-static char *rcsid = "$Header$";
+static const char *rcsid = "$Header$";
CCTK_FILEVERSION(util_ParseFile_c)
diff --git a/src/util/RegisterKeyedFunction.c b/src/util/RegisterKeyedFunction.c
index 2059a6be..f7e39d7b 100644
--- a/src/util/RegisterKeyedFunction.c
+++ b/src/util/RegisterKeyedFunction.c
@@ -11,7 +11,7 @@
#include "cctk_Flesh.h"
#include "RegisterKeyedFunction.h"
-static char *rcsid = "$Header$";
+static const char *rcsid = "$Header$";
CCTK_FILEVERSION(util_RegisterKeyedFunction_c)
diff --git a/src/util/SKBinTree.c b/src/util/SKBinTree.c
index 05710a9c..2e29482f 100644
--- a/src/util/SKBinTree.c
+++ b/src/util/SKBinTree.c
@@ -21,7 +21,7 @@ int STR_cmpi(const char *string1, const char *string2);
#define STR_CMP(a,b) STR_cmpi(a,b)
-static char *rcsid = "$Header$";
+static const char *rcsid = "$Header$";
CCTK_FILEVERSION(util_SKBinTree_c)
diff --git a/src/util/StoreHandledData.c b/src/util/StoreHandledData.c
index cadd38d8..3d4da049 100644
--- a/src/util/StoreHandledData.c
+++ b/src/util/StoreHandledData.c
@@ -14,7 +14,7 @@
#include "cctk_Flesh.h"
#include "StoreHandledData.h"
-static char *rcsid="$Header$";
+static const char *rcsid="$Header$";
CCTK_FILEVERSION(util_StoreHandledData_c)
diff --git a/src/util/StoreKeyedData.c b/src/util/StoreKeyedData.c
index 7a40bd37..cc6eda6a 100644
--- a/src/util/StoreKeyedData.c
+++ b/src/util/StoreKeyedData.c
@@ -14,7 +14,7 @@
#include "cctk_Flesh.h"
#include "StoreKeyedData.h"
-static char *rcsid = "$Header$";
+static const char *rcsid = "$Header$";
CCTK_FILEVERSION(util_StoreKeyedData_c)
diff --git a/src/util/StoreNamedData.c b/src/util/StoreNamedData.c
index adfb55ba..39d33ac6 100644
--- a/src/util/StoreNamedData.c
+++ b/src/util/StoreNamedData.c
@@ -16,7 +16,7 @@
#include "StoreNamedData.h"
#include "cctk_Flesh.h"
-static char *rcsid = "$Header$";
+static const char *rcsid = "$Header$";
CCTK_FILEVERSION(util_StoreNamedData_c)
diff --git a/src/util/String.c b/src/util/String.c
index e8a094e7..a6ad8290 100644
--- a/src/util/String.c
+++ b/src/util/String.c
@@ -16,7 +16,7 @@
#include "cctk_Flesh.h"
-static char *rcsid = "$Header$";
+static const char *rcsid = "$Header$";
CCTK_FILEVERSION(util_String_c)
diff --git a/src/util/Time.c b/src/util/Time.c
index 54b4112c..d46e1c33 100644
--- a/src/util/Time.c
+++ b/src/util/Time.c
@@ -15,7 +15,7 @@
#include "cctk_Flesh.h"
-static char *rcsid = "$Header$";
+static const char *rcsid = "$Header$";
CCTK_FILEVERSION(util_Time_c)