summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Jennings <mej@lbl.gov>2013-03-22 11:06:32 -0700
committerMichael Jennings <mej@lbl.gov>2013-03-22 11:06:32 -0700
commit8fabff39c7cb779069c4684a170702b369ba9163 (patch)
tree113bf787f14e51a7352c628ff5e6e63114eb01a9
parent12e2329458361da47e42f1b6266280cf8902b7a5 (diff)
downloadlibast-8fabff39c7cb779069c4684a170702b369ba9163.tar.gz
Remove RCS keyword strings; Git doesn't support them.
-rw-r--r--Makefile.am2
-rwxr-xr-xautogen.sh1
-rw-r--r--include/libast.h2
-rw-r--r--include/libast/obj.h2
-rw-r--r--include/libast/objpair.h2
-rw-r--r--include/libast/sysdefs.h.in2
-rw-r--r--include/libast_internal.h2
-rw-r--r--src/array.c2
-rw-r--r--src/avl_tree.c2
-rw-r--r--src/builtin_hashes.c2
-rw-r--r--src/conf.c2
-rw-r--r--src/debug.c4
-rw-r--r--src/dlinked_list.c2
-rw-r--r--src/file.c4
-rw-r--r--src/linked_list.c2
-rw-r--r--src/mbuff.c2
-rw-r--r--src/module.c2
-rw-r--r--src/msgs.c4
-rw-r--r--src/obj.c4
-rw-r--r--src/objpair.c4
-rw-r--r--src/options.c4
-rw-r--r--src/pthreads.c2
-rw-r--r--src/regexp.c2
-rw-r--r--src/snprintf.c2
-rw-r--r--src/socket.c2
-rw-r--r--src/str.c2
-rw-r--r--src/strings.c2
-rw-r--r--src/tok.c2
-rw-r--r--src/url.c2
-rw-r--r--src/ustr.c2
-rw-r--r--test/Makefile.am2
-rw-r--r--test/perf.c2
-rw-r--r--test/test.c2
33 files changed, 0 insertions, 77 deletions
diff --git a/Makefile.am b/Makefile.am
index 162cd50..f0bed9b 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,5 +1,3 @@
-# $Id$
-
AUTOMAKE_OPTIONS = foreign
ACLOCAL_AMFLAGS = -I .
SUBDIRS = include src test
diff --git a/autogen.sh b/autogen.sh
index 50f8b78..5fff094 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -1,6 +1,5 @@
#!/bin/sh
# Run this to generate all the initial makefiles, etc.
-# $Id$
broken() {
echo
diff --git a/include/libast.h b/include/libast.h
index b311d0a..246af92 100644
--- a/include/libast.h
+++ b/include/libast.h
@@ -30,8 +30,6 @@
* including all required system headers and LibAST Object headers.
*
* @author Michael Jennings <mej@eterm.org>
- * @version $Revision$
- * @date $Date$
*/
#ifndef _LIBAST_H_
diff --git a/include/libast/obj.h b/include/libast/obj.h
index 0d7d016..0cc4d20 100644
--- a/include/libast/obj.h
+++ b/include/libast/obj.h
@@ -33,8 +33,6 @@
* manipulating basic generic objects.
*
* @author Michael Jennings <mej@eterm.org>
- * $Revision$
- * $Date$
*/
/*@{*/
diff --git a/include/libast/objpair.h b/include/libast/objpair.h
index ac18789..ff8b219 100644
--- a/include/libast/objpair.h
+++ b/include/libast/objpair.h
@@ -32,8 +32,6 @@
* This file contains the declarations for the paired object type.
*
* @author Michael Jennings <mej@eterm.org>
- * $Revision$
- * $Date$
*/
/*@{*/
diff --git a/include/libast/sysdefs.h.in b/include/libast/sysdefs.h.in
index cf2d600..9e04e5f 100644
--- a/include/libast/sysdefs.h.in
+++ b/include/libast/sysdefs.h.in
@@ -29,8 +29,6 @@
* LibAST headers need are defined one way or the other.
*
* @author Michael Jennings <mej@eterm.org>
- * @version $Revision$
- * @date $Date$
*/
#ifndef _LIBAST_SYSDEFS_H_
diff --git a/include/libast_internal.h b/include/libast_internal.h
index 2f20d3a..6cc6a10 100644
--- a/include/libast_internal.h
+++ b/include/libast_internal.h
@@ -29,8 +29,6 @@
* are restricted to internal LibAST use only.
*
* @author Michael Jennings <mej@eterm.org>
- * @version $Revision$
- * @date $Date$
*/
#ifndef _LIBAST_INTERNAL_H_
diff --git a/src/array.c b/src/array.c
index f32a7b0..a82c041 100644
--- a/src/array.c
+++ b/src/array.c
@@ -21,8 +21,6 @@
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-static const char __attribute__((unused)) cvs_ident[] = "$Id$";
-
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
diff --git a/src/avl_tree.c b/src/avl_tree.c
index 25673f2..ede45ed 100644
--- a/src/avl_tree.c
+++ b/src/avl_tree.c
@@ -21,8 +21,6 @@
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-static const char __attribute__((unused)) cvs_ident[] = "$Id$";
-
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
diff --git a/src/builtin_hashes.c b/src/builtin_hashes.c
index 7fda314..fe6a4ef 100644
--- a/src/builtin_hashes.c
+++ b/src/builtin_hashes.c
@@ -21,8 +21,6 @@
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-static const char __attribute__((unused)) cvs_ident[] = "$Id$";
-
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
diff --git a/src/conf.c b/src/conf.c
index b684517..9d9c0ca 100644
--- a/src/conf.c
+++ b/src/conf.c
@@ -31,8 +31,6 @@
* @author Michael Jennings <mej@eterm.org>
*/
-static const char __attribute__((unused)) cvs_ident[] = "$Id$";
-
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
diff --git a/src/debug.c b/src/debug.c
index fe49c34..20a4736 100644
--- a/src/debug.c
+++ b/src/debug.c
@@ -28,12 +28,8 @@
* This file contains all non-cpp-based debugging functionality.
*
* @author Michael Jennings <mej@eterm.org>
- * $Revision$
- * $Date$
*/
-static const char __attribute__((unused)) cvs_ident[] = "$Id$";
-
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
diff --git a/src/dlinked_list.c b/src/dlinked_list.c
index 113b5d5..31a2593 100644
--- a/src/dlinked_list.c
+++ b/src/dlinked_list.c
@@ -21,8 +21,6 @@
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-static const char __attribute__((unused)) cvs_ident[] = "$Id$";
-
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
diff --git a/src/file.c b/src/file.c
index d44ec8c..76dc195 100644
--- a/src/file.c
+++ b/src/file.c
@@ -28,12 +28,8 @@
* This file contains file-related functions.
*
* @author Michael Jennings <mej@eterm.org>
- * $Revision$
- * $Date$
*/
-static const char __attribute__((unused)) cvs_ident[] = "$Id$";
-
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
diff --git a/src/linked_list.c b/src/linked_list.c
index 57563ad..d750313 100644
--- a/src/linked_list.c
+++ b/src/linked_list.c
@@ -21,8 +21,6 @@
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-static const char __attribute__((unused)) cvs_ident[] = "$Id$";
-
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
diff --git a/src/mbuff.c b/src/mbuff.c
index 6d2bd1a..ceaa5fe 100644
--- a/src/mbuff.c
+++ b/src/mbuff.c
@@ -21,8 +21,6 @@
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-static const char __attribute__((unused)) cvs_ident[] = "$Id$";
-
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
diff --git a/src/module.c b/src/module.c
index 7957880..f3cf0ce 100644
--- a/src/module.c
+++ b/src/module.c
@@ -21,8 +21,6 @@
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-static const char __attribute__((unused)) cvs_ident[] = "$Id$";
-
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
diff --git a/src/msgs.c b/src/msgs.c
index ded07fc..bdd6c05 100644
--- a/src/msgs.c
+++ b/src/msgs.c
@@ -29,12 +29,8 @@
* error messages to the end user.
*
* @author Michael Jennings <mej@eterm.org>
- * $Revision$
- * $Date$
*/
-static const char __attribute__((unused)) cvs_ident[] = "$Id$";
-
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
diff --git a/src/obj.c b/src/obj.c
index fcefc3c..08afc74 100644
--- a/src/obj.c
+++ b/src/obj.c
@@ -28,12 +28,8 @@
* This file contains the basic object class.
*
* @author Michael Jennings <mej@eterm.org>
- * $Revision$
- * $Date$
*/
-static const char __attribute__((unused)) cvs_ident[] = "$Id$";
-
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
diff --git a/src/objpair.c b/src/objpair.c
index 9bae412..550f3cd 100644
--- a/src/objpair.c
+++ b/src/objpair.c
@@ -28,12 +28,8 @@
* This file contains the objpair class.
*
* @author Michael Jennings <mej@eterm.org>
- * $Revision$
- * $Date$
*/
-static const char __attribute__((unused)) cvs_ident[] = "$Id$";
-
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
diff --git a/src/options.c b/src/options.c
index be5faa6..006f0c9 100644
--- a/src/options.c
+++ b/src/options.c
@@ -29,12 +29,8 @@
* option parser.
*
* @author Michael Jennings <mej@eterm.org>
- * $Revision$
- * $Date$
*/
-static const char __attribute__((unused)) cvs_ident[] = "$Id$";
-
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
diff --git a/src/pthreads.c b/src/pthreads.c
index 5948e16..96b2082 100644
--- a/src/pthreads.c
+++ b/src/pthreads.c
@@ -21,8 +21,6 @@
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-static const char __attribute__((unused)) cvs_ident[] = "$Id$";
-
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
diff --git a/src/regexp.c b/src/regexp.c
index 5ca43cd..7289697 100644
--- a/src/regexp.c
+++ b/src/regexp.c
@@ -21,8 +21,6 @@
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-static const char __attribute__((unused)) cvs_ident[] = "$Id$";
-
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
diff --git a/src/snprintf.c b/src/snprintf.c
index 6ca1a7b..96023c1 100644
--- a/src/snprintf.c
+++ b/src/snprintf.c
@@ -9,8 +9,6 @@
# undef HAVE_STDARG_H
#endif
-static const char __attribute__((unused)) cvs_ident[] = "$Id$";
-
/*
* Shamelessly snarfed from Enlightenment...
* which shamelessly snarfed from sane...
diff --git a/src/socket.c b/src/socket.c
index 4385a97..283c385 100644
--- a/src/socket.c
+++ b/src/socket.c
@@ -21,8 +21,6 @@
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-static const char __attribute__((unused)) cvs_ident[] = "$Id$";
-
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
diff --git a/src/str.c b/src/str.c
index 94f78c2..5037400 100644
--- a/src/str.c
+++ b/src/str.c
@@ -21,8 +21,6 @@
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-static const char __attribute__((unused)) cvs_ident[] = "$Id$";
-
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
diff --git a/src/strings.c b/src/strings.c
index cfb66bc..85ec0ec 100644
--- a/src/strings.c
+++ b/src/strings.c
@@ -30,8 +30,6 @@
* @author Michael Jennings <mej@eterm.org>
*/
-static const char __attribute__((unused)) cvs_ident[] = "$Id$";
-
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
diff --git a/src/tok.c b/src/tok.c
index a84c760..3f73d4c 100644
--- a/src/tok.c
+++ b/src/tok.c
@@ -21,8 +21,6 @@
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-static const char __attribute__((unused)) cvs_ident[] = "$Id$";
-
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
diff --git a/src/url.c b/src/url.c
index 5b5c2a0..ab0b061 100644
--- a/src/url.c
+++ b/src/url.c
@@ -21,8 +21,6 @@
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-static const char __attribute__((unused)) cvs_ident[] = "$Id$";
-
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
diff --git a/src/ustr.c b/src/ustr.c
index 164677a..8eaa4bc 100644
--- a/src/ustr.c
+++ b/src/ustr.c
@@ -21,8 +21,6 @@
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-static const char __attribute__((unused)) cvs_ident[] = "$Id$";
-
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
diff --git a/test/Makefile.am b/test/Makefile.am
index 77a8044..2fcf71d 100644
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -1,5 +1,3 @@
-# $Id$
-
EXTRA_PROGRAMS = libast-test libast-perf
INCLUDES = -I$(top_srcdir)/include -I$(top_srcdir)/include/$(PACKAGE)
diff --git a/test/perf.c b/test/perf.c
index c0e9f11..7ff50d6 100644
--- a/test/perf.c
+++ b/test/perf.c
@@ -21,8 +21,6 @@
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-static const char cvs_ident[] = "$Id$";
-
#if defined(HAVE_CONFIG_H) && (HAVE_CONFIG_H != 0)
# include <config.h>
#endif
diff --git a/test/test.c b/test/test.c
index 16d2a18..dbf6715 100644
--- a/test/test.c
+++ b/test/test.c
@@ -21,8 +21,6 @@
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
-static const char cvs_ident[] = "$Id$";
-
#if defined(HAVE_CONFIG_H) && (HAVE_CONFIG_H != 0)
# include <config.h>
#endif