diff options
author | Kjartan Maraas <kmaraas@gnome.org> | 2000-10-31 04:22:39 +0800 |
---|---|---|
committer | Kjartan Maraas <kmaraas@src.gnome.org> | 2000-10-31 04:22:39 +0800 |
commit | d2c36c6eeec0e1141e51e56988262c7aa9085cd1 (patch) | |
tree | f9c80a495d2ff2458203b15fae0c736fde904f6e | |
parent | 8c4a141f63d3de263d2176dffa61015c78c5a0be (diff) | |
download | gsoc2013-evolution-d2c36c6eeec0e1141e51e56988262c7aa9085cd1.tar gsoc2013-evolution-d2c36c6eeec0e1141e51e56988262c7aa9085cd1.tar.gz gsoc2013-evolution-d2c36c6eeec0e1141e51e56988262c7aa9085cd1.tar.bz2 gsoc2013-evolution-d2c36c6eeec0e1141e51e56988262c7aa9085cd1.tar.lz gsoc2013-evolution-d2c36c6eeec0e1141e51e56988262c7aa9085cd1.tar.xz gsoc2013-evolution-d2c36c6eeec0e1141e51e56988262c7aa9085cd1.tar.zst gsoc2013-evolution-d2c36c6eeec0e1141e51e56988262c7aa9085cd1.zip |
#include <stdlib.h> to remove warning. #include <stdlib.h> and <string.h>.
2000-10-30 Kjartan Maraas <kmaraas@gnome.org>
* hash.c: #include <stdlib.h> to remove warning.
* wordindex.c: #include <stdlib.h> and <string.h>.
svn path=/trunk/; revision=6278
-rw-r--r-- | libibex/ChangeLog | 5 | ||||
-rw-r--r-- | libibex/hash.c | 1 | ||||
-rw-r--r-- | libibex/wordindex.c | 2 |
3 files changed, 8 insertions, 0 deletions
diff --git a/libibex/ChangeLog b/libibex/ChangeLog index 5b17e39148..f4ed9f5f28 100644 --- a/libibex/ChangeLog +++ b/libibex/ChangeLog @@ -1,3 +1,8 @@ +2000-10-30 Kjartan Maraas <kmaraas@gnome.org> + + * hash.c: #include <stdlib.h> to remove warning. + * wordindex.c: #include <stdlib.h> and <string.h>. + 2000-10-26 Not Zed <NotZed@HelixCode.com> * block.c (ibex_block_cache_open): Use IBEX_VERSION rather than diff --git a/libibex/hash.c b/libibex/hash.c index ccebae2ac8..f79ee8f55e 100644 --- a/libibex/hash.c +++ b/libibex/hash.c @@ -23,6 +23,7 @@ /* hash based index mechanism */ #include <stdio.h> +#include <stdlib.h> #include <sys/types.h> #include <sys/stat.h> diff --git a/libibex/wordindex.c b/libibex/wordindex.c index 43a91f4342..3cee391668 100644 --- a/libibex/wordindex.c +++ b/libibex/wordindex.c @@ -30,6 +30,8 @@ of words, and could then be discarded (:flush()). */ #include <stdio.h> +#include <stdlib.h> +#include <string.h> #include <sys/types.h> #include <sys/stat.h> |