summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam S Fulton <wsf@fultondesigns.co.uk>2013-01-12 01:21:16 +0000
committerWilliam S Fulton <wsf@fultondesigns.co.uk>2013-01-12 01:21:16 +0000
commit7841a0d097e679baafe06c29539b686b50eb144b (patch)
tree07a2a9a2f1b7ae657512a2cd9dcf4fce1b66e179
parente2a0b892484590ce8b5a742fbea0dc781154ad94 (diff)
downloadswig-7841a0d097e679baafe06c29539b686b50eb144b.tar.gz
Remove cvs/svn Id strings
-rw-r--r--Source/CParse/cscanner.c2
-rw-r--r--Source/CParse/parser.y2
-rw-r--r--Source/CParse/templ.c2
-rw-r--r--Source/CParse/util.c2
-rw-r--r--Source/DOH/base.c2
-rw-r--r--Source/DOH/file.c2
-rw-r--r--Source/DOH/fio.c2
-rw-r--r--Source/DOH/hash.c2
-rw-r--r--Source/DOH/list.c2
-rw-r--r--Source/DOH/memory.c2
-rw-r--r--Source/DOH/string.c2
-rw-r--r--Source/DOH/void.c2
-rw-r--r--Source/Modules/allegrocl.cxx2
-rw-r--r--Source/Modules/allocate.cxx2
-rw-r--r--Source/Modules/browser.cxx2
-rw-r--r--Source/Modules/cffi.cxx2
-rw-r--r--Source/Modules/chicken.cxx2
-rw-r--r--Source/Modules/clisp.cxx2
-rw-r--r--Source/Modules/contract.cxx2
-rw-r--r--Source/Modules/csharp.cxx2
-rw-r--r--Source/Modules/d.cxx2
-rw-r--r--Source/Modules/directors.cxx2
-rw-r--r--Source/Modules/emit.cxx2
-rw-r--r--Source/Modules/go.cxx2
-rw-r--r--Source/Modules/guile.cxx2
-rw-r--r--Source/Modules/java.cxx2
-rw-r--r--Source/Modules/lang.cxx2
-rw-r--r--Source/Modules/lua.cxx2
-rw-r--r--Source/Modules/main.cxx2
-rw-r--r--Source/Modules/modula3.cxx2
-rw-r--r--Source/Modules/module.cxx2
-rw-r--r--Source/Modules/mzscheme.cxx2
-rw-r--r--Source/Modules/ocaml.cxx2
-rw-r--r--Source/Modules/octave.cxx2
-rw-r--r--Source/Modules/overload.cxx2
-rw-r--r--Source/Modules/perl5.cxx2
-rw-r--r--Source/Modules/php.cxx2
-rw-r--r--Source/Modules/pike.cxx2
-rw-r--r--Source/Modules/python.cxx2
-rw-r--r--Source/Modules/r.cxx2
-rw-r--r--Source/Modules/ruby.cxx2
-rw-r--r--Source/Modules/s-exp.cxx2
-rw-r--r--Source/Modules/swigmain.cxx2
-rw-r--r--Source/Modules/tcl8.cxx2
-rw-r--r--Source/Modules/typepass.cxx2
-rw-r--r--Source/Modules/uffi.cxx2
-rw-r--r--Source/Modules/utils.cxx2
-rw-r--r--Source/Modules/xml.cxx2
-rw-r--r--Source/Preprocessor/cpp.c2
-rw-r--r--Source/Preprocessor/expr.c2
-rw-r--r--Source/Swig/cwrap.c2
-rw-r--r--Source/Swig/deprecate.c2
-rw-r--r--Source/Swig/error.c2
-rw-r--r--Source/Swig/fragment.c2
-rw-r--r--Source/Swig/getopt.c2
-rw-r--r--Source/Swig/include.c2
-rw-r--r--Source/Swig/misc.c2
-rw-r--r--Source/Swig/naming.c2
-rw-r--r--Source/Swig/parms.c2
-rw-r--r--Source/Swig/scanner.c2
-rw-r--r--Source/Swig/stype.c2
-rw-r--r--Source/Swig/symbol.c2
-rw-r--r--Source/Swig/tree.c2
-rw-r--r--Source/Swig/typemap.c2
-rw-r--r--Source/Swig/typeobj.c2
-rw-r--r--Source/Swig/typesys.c2
-rw-r--r--Source/Swig/wrapfunc.c2
67 files changed, 0 insertions, 134 deletions
diff --git a/Source/CParse/cscanner.c b/Source/CParse/cscanner.c
index b52618606..791cf5949 100644
--- a/Source/CParse/cscanner.c
+++ b/Source/CParse/cscanner.c
@@ -15,8 +15,6 @@
* C identifiers up into keywords and SWIG directives.
* ----------------------------------------------------------------------------- */
-char cvsroot_cscanner_c[] = "$Id$";
-
#include "cparse.h"
#include "parser.h"
#include <string.h>
diff --git a/Source/CParse/parser.y b/Source/CParse/parser.y
index e4f3d67b2..c93f44cd0 100644
--- a/Source/CParse/parser.y
+++ b/Source/CParse/parser.y
@@ -17,8 +17,6 @@
#define yylex yylex
-char cvsroot_parser_y[] = "$Id$";
-
#include "swig.h"
#include "cparse.h"
#include "preprocessor.h"
diff --git a/Source/CParse/templ.c b/Source/CParse/templ.c
index b14cd1e4d..ed6acfc8c 100644
--- a/Source/CParse/templ.c
+++ b/Source/CParse/templ.c
@@ -11,8 +11,6 @@
* Expands a template into a specialized version.
* ----------------------------------------------------------------------------- */
-char cvsroot_templ_c[] = "$Id$";
-
#include "swig.h"
#include "cparse.h"
diff --git a/Source/CParse/util.c b/Source/CParse/util.c
index fa934ffc0..7572dff10 100644
--- a/Source/CParse/util.c
+++ b/Source/CParse/util.c
@@ -11,8 +11,6 @@
* Parsing utilities.
* ----------------------------------------------------------------------------- */
-char cvsroot_util_c[] = "$Id$";
-
#include "swig.h"
#include "cparse.h"
diff --git a/Source/DOH/base.c b/Source/DOH/base.c
index e64b0f561..1f92b6542 100644
--- a/Source/DOH/base.c
+++ b/Source/DOH/base.c
@@ -12,8 +12,6 @@
* DOH objects. A number of small utility functions are also included.
* ----------------------------------------------------------------------------- */
-char cvsroot_base_c[] = "$Id$";
-
#include "dohint.h"
/* -----------------------------------------------------------------------------
diff --git a/Source/DOH/file.c b/Source/DOH/file.c
index 11482fa7f..7409ebbfb 100644
--- a/Source/DOH/file.c
+++ b/Source/DOH/file.c
@@ -12,8 +12,6 @@
* ordinary FILE * or integer file descriptor.
* ----------------------------------------------------------------------------- */
-char cvsroot_file_c[] = "$Id$";
-
#include "dohint.h"
#ifdef DOH_INTFILE
diff --git a/Source/DOH/fio.c b/Source/DOH/fio.c
index 573bebe7b..5693deeb5 100644
--- a/Source/DOH/fio.c
+++ b/Source/DOH/fio.c
@@ -12,8 +12,6 @@
* formatted output, readline, and splitting.
* ----------------------------------------------------------------------------- */
-char cvsroot_fio_c[] = "$Id$";
-
#include "dohint.h"
#define OBUFLEN 512
diff --git a/Source/DOH/hash.c b/Source/DOH/hash.c
index 566cb349a..c2bc3dd95 100644
--- a/Source/DOH/hash.c
+++ b/Source/DOH/hash.c
@@ -11,8 +11,6 @@
* Implements a simple hash table object.
* ----------------------------------------------------------------------------- */
-char cvsroot_hash_c[] = "$Id$";
-
#include "dohint.h"
extern DohObjInfo DohHashType;
diff --git a/Source/DOH/list.c b/Source/DOH/list.c
index d20311150..8a96a9a60 100644
--- a/Source/DOH/list.c
+++ b/Source/DOH/list.c
@@ -11,8 +11,6 @@
* Implements a simple list object.
* ----------------------------------------------------------------------------- */
-char cvsroot_list_c[] = "$Id$";
-
#include "dohint.h"
typedef struct List {
diff --git a/Source/DOH/memory.c b/Source/DOH/memory.c
index 5ad11019d..b916870d7 100644
--- a/Source/DOH/memory.c
+++ b/Source/DOH/memory.c
@@ -12,8 +12,6 @@
* of objects and checking of objects.
* ----------------------------------------------------------------------------- */
-char cvsroot_memory_c[] = "$Id$";
-
#include "dohint.h"
#ifndef DOH_POOL_SIZE
diff --git a/Source/DOH/string.c b/Source/DOH/string.c
index d34301691..50676c7c3 100644
--- a/Source/DOH/string.c
+++ b/Source/DOH/string.c
@@ -12,8 +12,6 @@
* file semantics.
* ----------------------------------------------------------------------------- */
-char cvsroot_string_c[] = "$Id$";
-
#include "dohint.h"
extern DohObjInfo DohStringType;
diff --git a/Source/DOH/void.c b/Source/DOH/void.c
index 2d684b9cd..6111a8c49 100644
--- a/Source/DOH/void.c
+++ b/Source/DOH/void.c
@@ -12,8 +12,6 @@
* an arbitrary C object represented as a void *.
* ----------------------------------------------------------------------------- */
-char cvsroot_void_c[] = "$Id$";
-
#include "dohint.h"
typedef struct {
diff --git a/Source/Modules/allegrocl.cxx b/Source/Modules/allegrocl.cxx
index 1e0c6c98b..93477057f 100644
--- a/Source/Modules/allegrocl.cxx
+++ b/Source/Modules/allegrocl.cxx
@@ -11,8 +11,6 @@
* ALLEGROCL language module for SWIG.
* ----------------------------------------------------------------------------- */
-char cvsroot_allegrocl_cxx[] = "$Id$";
-
#include "swigmod.h"
#include "cparse.h"
#include <ctype.h>
diff --git a/Source/Modules/allocate.cxx b/Source/Modules/allocate.cxx
index 4c884caca..5320d9689 100644
--- a/Source/Modules/allocate.cxx
+++ b/Source/Modules/allocate.cxx
@@ -15,8 +15,6 @@
* Doc/Manual/SWIGPlus.html for details.
* ----------------------------------------------------------------------------- */
-char cvsroot_allocate_cxx[] = "$Id$";
-
#include "swigmod.h"
#include "cparse.h"
diff --git a/Source/Modules/browser.cxx b/Source/Modules/browser.cxx
index b1365c0b4..f5ceae5b1 100644
--- a/Source/Modules/browser.cxx
+++ b/Source/Modules/browser.cxx
@@ -12,8 +12,6 @@
* feature that's normally disabled.
* ----------------------------------------------------------------------------- */
-char cvsroot_browser_cxx[] = "$Id$";
-
#include "swigmod.h"
#ifdef SWIG_SWILL
diff --git a/Source/Modules/cffi.cxx b/Source/Modules/cffi.cxx
index 88f82b647..29de9f9ed 100644
--- a/Source/Modules/cffi.cxx
+++ b/Source/Modules/cffi.cxx
@@ -11,8 +11,6 @@
* cffi language module for SWIG.
* ----------------------------------------------------------------------------- */
-char cvsroot_cffi_cxx[] = "$Id$";
-
#include "swigmod.h"
#include "cparse.h"
#include <ctype.h>
diff --git a/Source/Modules/chicken.cxx b/Source/Modules/chicken.cxx
index 8ff154f82..89e583d18 100644
--- a/Source/Modules/chicken.cxx
+++ b/Source/Modules/chicken.cxx
@@ -11,8 +11,6 @@
* CHICKEN language module for SWIG.
* ----------------------------------------------------------------------------- */
-char cvsroot_chicken_cxx[] = "$Id$";
-
#include "swigmod.h"
#include <ctype.h>
diff --git a/Source/Modules/clisp.cxx b/Source/Modules/clisp.cxx
index 7bfb6298c..4290b5452 100644
--- a/Source/Modules/clisp.cxx
+++ b/Source/Modules/clisp.cxx
@@ -11,8 +11,6 @@
* clisp language module for SWIG.
* ----------------------------------------------------------------------------- */
-char cvsroot_clisp_cxx[] = "$Id$";
-
#include "swigmod.h"
static const char *usage = (char *) "\
diff --git a/Source/Modules/contract.cxx b/Source/Modules/contract.cxx
index 4240945b0..5fa5bcad5 100644
--- a/Source/Modules/contract.cxx
+++ b/Source/Modules/contract.cxx
@@ -11,8 +11,6 @@
* Support for Wrap by Contract in SWIG.
* ----------------------------------------------------------------------------- */
-char cvsroot_contract_cxx[] = "$Id$";
-
#include "swigmod.h"
/* Contract structure. This holds rules about the different kinds of contract sections
diff --git a/Source/Modules/csharp.cxx b/Source/Modules/csharp.cxx
index c31d070be..88cd679b9 100644
--- a/Source/Modules/csharp.cxx
+++ b/Source/Modules/csharp.cxx
@@ -11,8 +11,6 @@
* C# language module for SWIG.
* ----------------------------------------------------------------------------- */
-char cvsroot_csharp_cxx[] = "$Id$";
-
#include "swigmod.h"
#include <limits.h> // for INT_MAX
#include "cparse.h"
diff --git a/Source/Modules/d.cxx b/Source/Modules/d.cxx
index 3fffd8e33..88c3ccfff 100644
--- a/Source/Modules/d.cxx
+++ b/Source/Modules/d.cxx
@@ -11,8 +11,6 @@
* D language module for SWIG.
* ----------------------------------------------------------------------------- */
-char cvsroot_d_cxx[] = "$Id$";
-
#include "swigmod.h"
#include "cparse.h"
#include <ctype.h>
diff --git a/Source/Modules/directors.cxx b/Source/Modules/directors.cxx
index 4b23a52bb..4cb38d0aa 100644
--- a/Source/Modules/directors.cxx
+++ b/Source/Modules/directors.cxx
@@ -13,8 +13,6 @@
* in SWIG. --MR
* ----------------------------------------------------------------------------- */
-char cvsroot_directors_cxx[] = "$Id";
-
#include "swigmod.h"
/* Swig_csuperclass_call()
diff --git a/Source/Modules/emit.cxx b/Source/Modules/emit.cxx
index c16eaac0f..7c2607fc8 100644
--- a/Source/Modules/emit.cxx
+++ b/Source/Modules/emit.cxx
@@ -11,8 +11,6 @@
* Useful functions for emitting various pieces of code.
* ----------------------------------------------------------------------------- */
-char cvsroot_emit_cxx[] = "$Id$";
-
#include "swigmod.h"
/* -----------------------------------------------------------------------------
diff --git a/Source/Modules/go.cxx b/Source/Modules/go.cxx
index 9784ba125..fa706cb62 100644
--- a/Source/Modules/go.cxx
+++ b/Source/Modules/go.cxx
@@ -7,8 +7,6 @@
* Go language module for SWIG.
* ----------------------------------------------------------------------------- */
-char cvsroot_go_cxx[] = "$Id";
-
#include "swigmod.h"
#include "cparse.h"
#include <ctype.h>
diff --git a/Source/Modules/guile.cxx b/Source/Modules/guile.cxx
index 0777b316f..211b11baf 100644
--- a/Source/Modules/guile.cxx
+++ b/Source/Modules/guile.cxx
@@ -11,8 +11,6 @@
* Guile language module for SWIG.
* ----------------------------------------------------------------------------- */
-char cvsroot_guile_cxx[] = "$Id$";
-
#include "swigmod.h"
#include <ctype.h>
diff --git a/Source/Modules/java.cxx b/Source/Modules/java.cxx
index b4703bd3e..57ac7ca52 100644
--- a/Source/Modules/java.cxx
+++ b/Source/Modules/java.cxx
@@ -11,8 +11,6 @@
* Java language module for SWIG.
* ----------------------------------------------------------------------------- */
-char cvsroot_java_cxx[] = "$Id$";
-
#include "swigmod.h"
#include <limits.h> // for INT_MAX
#include "cparse.h"
diff --git a/Source/Modules/lang.cxx b/Source/Modules/lang.cxx
index dc21d7f96..4f1657825 100644
--- a/Source/Modules/lang.cxx
+++ b/Source/Modules/lang.cxx
@@ -11,8 +11,6 @@
* Language base class functions. Default C++ handling is also implemented here.
* ----------------------------------------------------------------------------- */
-char cvsroot_lang_cxx[] = "$Id$";
-
#include "swigmod.h"
#include "cparse.h"
#include <ctype.h>
diff --git a/Source/Modules/lua.cxx b/Source/Modules/lua.cxx
index 34763290f..cfb3a3f5b 100644
--- a/Source/Modules/lua.cxx
+++ b/Source/Modules/lua.cxx
@@ -44,8 +44,6 @@
Added support for embedded Lua. Try swig -lua -help for more information
*/
-char cvsroot_lua_cxx[] = "$Id$";
-
#include "swigmod.h"
/**** Diagnostics:
diff --git a/Source/Modules/main.cxx b/Source/Modules/main.cxx
index d2876c16f..d1f3ab274 100644
--- a/Source/Modules/main.cxx
+++ b/Source/Modules/main.cxx
@@ -11,8 +11,6 @@
* Main entry point to the SWIG core.
* ----------------------------------------------------------------------------- */
-char cvsroot_main_cxx[] = "$Id$";
-
#include "swigconfig.h"
#if defined(_WIN32)
diff --git a/Source/Modules/modula3.cxx b/Source/Modules/modula3.cxx
index f7b60825d..ffb172f8f 100644
--- a/Source/Modules/modula3.cxx
+++ b/Source/Modules/modula3.cxx
@@ -11,8 +11,6 @@
* Modula3 language module for SWIG.
* ----------------------------------------------------------------------------- */
-char cvsroot_modula3_cxx[] = "$Id$";
-
/*
Text formatted with
indent -sob -br -ce -nut -npsl
diff --git a/Source/Modules/module.cxx b/Source/Modules/module.cxx
index f4ab560dd..aa48689ab 100644
--- a/Source/Modules/module.cxx
+++ b/Source/Modules/module.cxx
@@ -11,8 +11,6 @@
* This file is responsible for the module system.
* ----------------------------------------------------------------------------- */
-char cvsroot_module_cxx[] = "$Id$";
-
#include "swigmod.h"
struct Module {
diff --git a/Source/Modules/mzscheme.cxx b/Source/Modules/mzscheme.cxx
index e2f44deef..a147dd9c4 100644
--- a/Source/Modules/mzscheme.cxx
+++ b/Source/Modules/mzscheme.cxx
@@ -11,8 +11,6 @@
* Mzscheme language module for SWIG.
* ----------------------------------------------------------------------------- */
-char cvsroot_mzscheme_cxx[] = "$Id$";
-
#include "swigmod.h"
#include <ctype.h>
diff --git a/Source/Modules/ocaml.cxx b/Source/Modules/ocaml.cxx
index beac03237..34c8975c5 100644
--- a/Source/Modules/ocaml.cxx
+++ b/Source/Modules/ocaml.cxx
@@ -11,8 +11,6 @@
* Ocaml language module for SWIG.
* ----------------------------------------------------------------------------- */
-char cvsroot_ocaml_cxx[] = "$Id$";
-
#include "swigmod.h"
#include <ctype.h>
diff --git a/Source/Modules/octave.cxx b/Source/Modules/octave.cxx
index 5758e38c3..5584176a1 100644
--- a/Source/Modules/octave.cxx
+++ b/Source/Modules/octave.cxx
@@ -11,8 +11,6 @@
* Octave language module for SWIG.
* ----------------------------------------------------------------------------- */
-char cvsroot_octave_cxx[] = "$Id$";
-
#include "swigmod.h"
static String *global_name = 0;
diff --git a/Source/Modules/overload.cxx b/Source/Modules/overload.cxx
index 6a574fdbe..0112d2d9e 100644
--- a/Source/Modules/overload.cxx
+++ b/Source/Modules/overload.cxx
@@ -13,8 +13,6 @@
* building a dispatch function.
* ----------------------------------------------------------------------------- */
-char cvsroot_overload_cxx[] = "$Id$";
-
#include "swigmod.h"
#define MAX_OVERLOAD 4096
diff --git a/Source/Modules/perl5.cxx b/Source/Modules/perl5.cxx
index f786a7607..7147e67c1 100644
--- a/Source/Modules/perl5.cxx
+++ b/Source/Modules/perl5.cxx
@@ -11,8 +11,6 @@
* Perl5 language module for SWIG.
* ------------------------------------------------------------------------- */
-char cvsroot_perl5_cxx[] = "$Id$";
-
#include "swigmod.h"
#include "cparse.h"
static int treduce = SWIG_cparse_template_reduce(0);
diff --git a/Source/Modules/php.cxx b/Source/Modules/php.cxx
index 9b68d072c..292f979ba 100644
--- a/Source/Modules/php.cxx
+++ b/Source/Modules/php.cxx
@@ -37,8 +37,6 @@
* (may need to add more WARN_PHP_xxx codes...)
*/
-char cvsroot_php_cxx[] = "$Id$";
-
#include "swigmod.h"
#include <ctype.h>
diff --git a/Source/Modules/pike.cxx b/Source/Modules/pike.cxx
index 6749989f2..cdbddc15d 100644
--- a/Source/Modules/pike.cxx
+++ b/Source/Modules/pike.cxx
@@ -29,8 +29,6 @@
*
*/
-char cvsroot_pike_cxx[] = "$Id$";
-
#include "swigmod.h"
#include <ctype.h> // for isalnum()
diff --git a/Source/Modules/python.cxx b/Source/Modules/python.cxx
index bd897636f..280a36923 100644
--- a/Source/Modules/python.cxx
+++ b/Source/Modules/python.cxx
@@ -11,8 +11,6 @@
* Python language module for SWIG.
* ----------------------------------------------------------------------------- */
-char cvsroot_python_cxx[] = "$Id$";
-
#include "swigmod.h"
#include "cparse.h"
diff --git a/Source/Modules/r.cxx b/Source/Modules/r.cxx
index 4724ca3a7..8b3bc20bb 100644
--- a/Source/Modules/r.cxx
+++ b/Source/Modules/r.cxx
@@ -11,8 +11,6 @@
* R language module for SWIG.
* ----------------------------------------------------------------------------- */
-char cvsroot_r_cxx[] = "$Id$";
-
#include "swigmod.h"
static const double DEFAULT_NUMBER = .0000123456712312312323;
diff --git a/Source/Modules/ruby.cxx b/Source/Modules/ruby.cxx
index ff8d70d46..eaec0e185 100644
--- a/Source/Modules/ruby.cxx
+++ b/Source/Modules/ruby.cxx
@@ -11,8 +11,6 @@
* Ruby language module for SWIG.
* ----------------------------------------------------------------------------- */
-char cvsroot_ruby_cxx[] = "$Id$";
-
#include "swigmod.h"
#include "cparse.h"
static int treduce = SWIG_cparse_template_reduce(0);
diff --git a/Source/Modules/s-exp.cxx b/Source/Modules/s-exp.cxx
index 2c9a0cc99..fe3b1facc 100644
--- a/Source/Modules/s-exp.cxx
+++ b/Source/Modules/s-exp.cxx
@@ -11,8 +11,6 @@
* A parse tree represented as Lisp s-expressions.
* ----------------------------------------------------------------------------- */
-char cvsroot_s_exp_cxx[] = "$Id$";
-
#include "swigmod.h"
#include "dohint.h"
diff --git a/Source/Modules/swigmain.cxx b/Source/Modules/swigmain.cxx
index 01ab1b79f..7c9cded70 100644
--- a/Source/Modules/swigmain.cxx
+++ b/Source/Modules/swigmain.cxx
@@ -16,8 +16,6 @@
* to SWIG, you would modify this file.
* ----------------------------------------------------------------------------- */
-char cvsroot_swigmain_cxx[] = "$Id$";
-
#include "swigmod.h"
#include <ctype.h>
diff --git a/Source/Modules/tcl8.cxx b/Source/Modules/tcl8.cxx
index 91e74f4ca..9ef1b8706 100644
--- a/Source/Modules/tcl8.cxx
+++ b/Source/Modules/tcl8.cxx
@@ -11,8 +11,6 @@
* Tcl8 language module for SWIG.
* ----------------------------------------------------------------------------- */
-char cvsroot_tcl8_cxx[] = "$Id$";
-
#include "swigmod.h"
#include "cparse.h"
static int treduce = SWIG_cparse_template_reduce(0);
diff --git a/Source/Modules/typepass.cxx b/Source/Modules/typepass.cxx
index cda56aecf..2346c94e1 100644
--- a/Source/Modules/typepass.cxx
+++ b/Source/Modules/typepass.cxx
@@ -16,8 +16,6 @@
* and other information needed for compilation.
* ----------------------------------------------------------------------------- */
-char cvsroot_typepass_cxx[] = "$Id$";
-
#include "swigmod.h"
#include "cparse.h"
diff --git a/Source/Modules/uffi.cxx b/Source/Modules/uffi.cxx
index 3b9a0abaa..b0136a361 100644
--- a/Source/Modules/uffi.cxx
+++ b/Source/Modules/uffi.cxx
@@ -13,8 +13,6 @@
// TODO: remove remnants of lisptype
-char cvsroot_uffi_cxx[] = "$Id$";
-
#include "swigmod.h"
static const char *usage = (char *) "\
diff --git a/Source/Modules/utils.cxx b/Source/Modules/utils.cxx
index 6e868eec7..a91ebe098 100644
--- a/Source/Modules/utils.cxx
+++ b/Source/Modules/utils.cxx
@@ -11,8 +11,6 @@
* Various utility functions.
* ----------------------------------------------------------------------------- */
-char cvsroot_utils_cxx[] = "$Id$";
-
#include <swigmod.h>
int is_public(Node *n) {
diff --git a/Source/Modules/xml.cxx b/Source/Modules/xml.cxx
index 4bd524815..45b7f7a89 100644
--- a/Source/Modules/xml.cxx
+++ b/Source/Modules/xml.cxx
@@ -11,8 +11,6 @@
* An Xml parse tree generator.
* ----------------------------------------------------------------------------- */
-char cvsroot_xml_cxx[] = "$Id$";
-
#include "swigmod.h"
static const char *usage = "\
diff --git a/Source/Preprocessor/cpp.c b/Source/Preprocessor/cpp.c
index c16fbe7e5..baadf7132 100644
--- a/Source/Preprocessor/cpp.c
+++ b/Source/Preprocessor/cpp.c
@@ -17,8 +17,6 @@
* - Lines beginning with %# are stripped down to #... and passed through.
* ----------------------------------------------------------------------------- */
-char cvsroot_cpp_c[] = "$Id$";
-
#include "swig.h"
#include "preprocessor.h"
#include <ctype.h>
diff --git a/Source/Preprocessor/expr.c b/Source/Preprocessor/expr.c
index b32665d4a..6d22c8c5e 100644
--- a/Source/Preprocessor/expr.c
+++ b/Source/Preprocessor/expr.c
@@ -12,8 +12,6 @@
* encountered during preprocessing.
* ----------------------------------------------------------------------------- */
-char cvsroot_expr_c[] = "$Id$";
-
#include "swig.h"
#include "preprocessor.h"
diff --git a/Source/Swig/cwrap.c b/Source/Swig/cwrap.c
index 38787fc63..8cd48e94e 100644
--- a/Source/Swig/cwrap.c
+++ b/Source/Swig/cwrap.c
@@ -12,8 +12,6 @@
* the naming of local variables, calling conventions, and so forth.
* ----------------------------------------------------------------------------- */
-char cvsroot_cwrap_c[] = "$Id$";
-
#include "swig.h"
extern int cparse_cplusplus;
diff --git a/Source/Swig/deprecate.c b/Source/Swig/deprecate.c
index ead4d5bd6..08dc06a66 100644
--- a/Source/Swig/deprecate.c
+++ b/Source/Swig/deprecate.c
@@ -13,8 +13,6 @@
* that the function and/or API needs to be changed in some future release.
* ----------------------------------------------------------------------------- */
-char cvsroot_deprecate_c[] = "$Id: parms.c 9630 2007-01-02 21:17:19Z beazley $";
-
#include "swig.h"
/* ---------------------------------------------------------------------
diff --git a/Source/Swig/error.c b/Source/Swig/error.c
index 5dfcf605b..2c93cfb21 100644
--- a/Source/Swig/error.c
+++ b/Source/Swig/error.c
@@ -12,8 +12,6 @@
* error messages.
* ----------------------------------------------------------------------------- */
-char cvsroot_error_c[] = "$Id$";
-
#include "swig.h"
#include <stdarg.h>
#include <ctype.h>
diff --git a/Source/Swig/fragment.c b/Source/Swig/fragment.c
index 4a3fea5a2..15f701ae4 100644
--- a/Source/Swig/fragment.c
+++ b/Source/Swig/fragment.c
@@ -16,8 +16,6 @@
* wrapper code and to generate cleaner wrapper files.
* ----------------------------------------------------------------------------- */
-char cvsroot_fragment_c[] = "$Id$";
-
#include "swig.h"
#include "swigwarn.h"
diff --git a/Source/Swig/getopt.c b/Source/Swig/getopt.c
index f6f196bfd..74076a5f0 100644
--- a/Source/Swig/getopt.c
+++ b/Source/Swig/getopt.c
@@ -20,8 +20,6 @@
* Should have cleaner error handling in general.
* ----------------------------------------------------------------------------- */
-char cvsroot_getopt_c[] = "$Id$";
-
#include "swig.h"
static char **args;
diff --git a/Source/Swig/include.c b/Source/Swig/include.c
index 5796416a4..13afb21ae 100644
--- a/Source/Swig/include.c
+++ b/Source/Swig/include.c
@@ -13,8 +13,6 @@
* are provided.
* ----------------------------------------------------------------------------- */
-char cvsroot_include_c[] = "$Id$";
-
#include "swig.h"
static List *directories = 0; /* List of include directories */
diff --git a/Source/Swig/misc.c b/Source/Swig/misc.c
index ca471b72a..05dd0c480 100644
--- a/Source/Swig/misc.c
+++ b/Source/Swig/misc.c
@@ -11,8 +11,6 @@
* Miscellaneous functions that don't really fit anywhere else.
* ----------------------------------------------------------------------------- */
-char cvsroot_misc_c[] = "$Id$";
-
#include "swig.h"
#include <errno.h>
#include <ctype.h>
diff --git a/Source/Swig/naming.c b/Source/Swig/naming.c
index e96dbd14e..a4bff35af 100644
--- a/Source/Swig/naming.c
+++ b/Source/Swig/naming.c
@@ -20,8 +20,6 @@
* %v - variable name is substituted
* ----------------------------------------------------------------------------- */
-char cvsroot_naming_c[] = "$Id$";
-
#include "swig.h"
#include "cparse.h"
#include <ctype.h>
diff --git a/Source/Swig/parms.c b/Source/Swig/parms.c
index 0f4d17b73..bec1e63fa 100644
--- a/Source/Swig/parms.c
+++ b/Source/Swig/parms.c
@@ -11,8 +11,6 @@
* Parameter list class.
* ----------------------------------------------------------------------------- */
-char cvsroot_parms_c[] = "$Id$";
-
#include "swig.h"
/* ------------------------------------------------------------------------
diff --git a/Source/Swig/scanner.c b/Source/Swig/scanner.c
index 8c4bf26a2..52e21dc0a 100644
--- a/Source/Swig/scanner.c
+++ b/Source/Swig/scanner.c
@@ -14,8 +14,6 @@
* to easily construct yacc-compatible scanners.
* ----------------------------------------------------------------------------- */
-char cvsroot_scanner_c[] = "$Id$";
-
#include "swig.h"
#include <ctype.h>
diff --git a/Source/Swig/stype.c b/Source/Swig/stype.c
index 5b9708b9a..8dc189725 100644
--- a/Source/Swig/stype.c
+++ b/Source/Swig/stype.c
@@ -12,8 +12,6 @@
* the form of simple strings.
* ----------------------------------------------------------------------------- */
-char cvsroot_stype_c[] = "$Id$";
-
#include "swig.h"
#include "cparse.h"
#include <ctype.h>
diff --git a/Source/Swig/symbol.c b/Source/Swig/symbol.c
index 6b54eac08..e77f818de 100644
--- a/Source/Swig/symbol.c
+++ b/Source/Swig/symbol.c
@@ -11,8 +11,6 @@
* This file implements the SWIG symbol table. See details below.
* ----------------------------------------------------------------------------- */
-char cvsroot_symbol_c[] = "$Id$";
-
#include "swig.h"
#include "swigwarn.h"
#include <ctype.h>
diff --git a/Source/Swig/tree.c b/Source/Swig/tree.c
index b5c9d26dc..784d3ab84 100644
--- a/Source/Swig/tree.c
+++ b/Source/Swig/tree.c
@@ -12,8 +12,6 @@
* parse trees.
* ----------------------------------------------------------------------------- */
-char cvsroot_tree_c[] = "$Id$";
-
#include "swig.h"
#include <stdarg.h>
#include <assert.h>
diff --git a/Source/Swig/typemap.c b/Source/Swig/typemap.c
index 2570e8090..a607e92b8 100644
--- a/Source/Swig/typemap.c
+++ b/Source/Swig/typemap.c
@@ -11,8 +11,6 @@
* A somewhat generalized implementation of SWIG1.1 typemaps.
* ----------------------------------------------------------------------------- */
-char cvsroot_typemap_c[] = "$Id$";
-
#include "swig.h"
#include "cparse.h"
#include <ctype.h>
diff --git a/Source/Swig/typeobj.c b/Source/Swig/typeobj.c
index 2e8d08f10..20caa9ec9 100644
--- a/Source/Swig/typeobj.c
+++ b/Source/Swig/typeobj.c
@@ -14,8 +14,6 @@
* like typedef, namespaces, etc.
* ----------------------------------------------------------------------------- */
-char cvsroot_typeobj_c[] = "$Id$";
-
#include "swig.h"
#include <ctype.h>
diff --git a/Source/Swig/typesys.c b/Source/Swig/typesys.c
index 76d84c960..d12d70543 100644
--- a/Source/Swig/typesys.c
+++ b/Source/Swig/typesys.c
@@ -14,8 +14,6 @@
* run-time type checker is also handled here.
* ----------------------------------------------------------------------------- */
-char cvsroot_typesys_c[] = "$Id$";
-
#include "swig.h"
#include "cparse.h"
diff --git a/Source/Swig/wrapfunc.c b/Source/Swig/wrapfunc.c
index 2c9f7c86a..29a59cc49 100644
--- a/Source/Swig/wrapfunc.c
+++ b/Source/Swig/wrapfunc.c
@@ -13,8 +13,6 @@
* to be created in a piecemeal manner.
* ----------------------------------------------------------------------------- */
-char cvsroot_wrapfunc_c[] = "$Id$";
-
#include "swig.h"
#include <ctype.h>