diff options
Diffstat (limited to 'libidu')
-rw-r--r-- | libidu/Makefile.am | 2 | ||||
-rw-r--r-- | libidu/idfile.h | 4 | ||||
-rw-r--r-- | libidu/idread.c | 2 | ||||
-rw-r--r-- | libidu/idu-hash.c (renamed from libidu/hash.c) | 2 | ||||
-rw-r--r-- | libidu/idu-hash.h (renamed from libidu/hash.h) | 2 | ||||
-rw-r--r-- | libidu/idwrite.c | 2 |
6 files changed, 7 insertions, 7 deletions
diff --git a/libidu/Makefile.am b/libidu/Makefile.am index 16589e7..b9c3dac 100644 --- a/libidu/Makefile.am +++ b/libidu/Makefile.am @@ -3,7 +3,7 @@ noinst_LIBRARIES = libidu.a libidu_a_SOURCES = dynvec.c dynvec.h \ - hash.c hash.h \ + idu-hash.c idu-hash.h \ idfile.c idfile.h \ idread.c \ idwrite.c \ diff --git a/libidu/idfile.h b/libidu/idfile.h index 31d27a9..6c2c125 100644 --- a/libidu/idfile.h +++ b/libidu/idfile.h @@ -1,5 +1,5 @@ /* idfile.h -- decls for ID file header and constituent file names - Copyright (C) 1986, 1995, 1996, 1999, 2007, 2008 Free Software Foundation, Inc. + Copyright (C) 1986, 1995, 1996, 1999, 2007-2009 Free Software Foundation, Inc. Written by Greg McGary <gkm@gnu.ai.mit.edu> This program is free software; you can redistribute it and/or modify @@ -26,7 +26,7 @@ #include <stdio.h> #include <string.h> #include "obstack.h" -#include "hash.h" +#include "idu-hash.h" #include "dynvec.h" #include "tokflags.h" diff --git a/libidu/idread.c b/libidu/idread.c index 0900743..a51b437 100644 --- a/libidu/idread.c +++ b/libidu/idread.c @@ -25,7 +25,7 @@ #include <xalloc.h> #include <error.h> -#include "hash.h" +#include "idu-hash.h" #include "idfile.h" #include "iduglobal.h" #include "ignore-value.h" diff --git a/libidu/hash.c b/libidu/idu-hash.c index 50389f2..638335e 100644 --- a/libidu/hash.c +++ b/libidu/idu-hash.c @@ -22,7 +22,7 @@ #include <xalloc.h> #include <error.h> -#include "hash.h" +#include "idu-hash.h" #include "xnls.h" static void hash_rehash (struct hash_table* ht); diff --git a/libidu/hash.h b/libidu/idu-hash.h index 1391b66..4e52963 100644 --- a/libidu/hash.h +++ b/libidu/idu-hash.h @@ -1,4 +1,4 @@ -/* hash.h -- decls for hash table +/* idu-hash.h -- decls for hash table Copyright (C) 1995, 1999, 2007-2009 Free Software Foundation, Inc. Written by Greg McGary <gkm@gnu.ai.mit.edu> diff --git a/libidu/idwrite.c b/libidu/idwrite.c index effd104..d290b46 100644 --- a/libidu/idwrite.c +++ b/libidu/idwrite.c @@ -24,7 +24,7 @@ #include "idfile.h" #include "ignore-value.h" -#include "hash.h" +#include "idu-hash.h" #include "xnls.h" static int file_link_qsort_compare (void const *x, void const *y); |