diff options
author | Kjartan Maraas <kmaraas@gnome.org> | 2001-03-26 19:23:28 +0800 |
---|---|---|
committer | Kjartan Maraas <kmaraas@src.gnome.org> | 2001-03-26 19:23:28 +0800 |
commit | 69af2a1b0470d0df62f6b28e0e4c87465343198b (patch) | |
tree | 61fcc91fa733339a66032eaf7279c2ac66f5d6c6 /libibex/wordindexmem.c | |
parent | 5fe6e035ed8d47b13d151ca556197f8832b18c81 (diff) | |
download | gsoc2013-evolution-69af2a1b0470d0df62f6b28e0e4c87465343198b.tar.gz gsoc2013-evolution-69af2a1b0470d0df62f6b28e0e4c87465343198b.tar.zst gsoc2013-evolution-69af2a1b0470d0df62f6b28e0e4c87465343198b.zip |
Header shuffling. Move glibc headers before gnome stuff. Same here. Added
2001-03-26 Kjartan Maraas <kmaraas@gnome.org>
* disktail.c: Header shuffling. Move glibc headers before
gnome stuff.
* testindex.c: Same here.
* wordindexmem.c: Added <string.h> and <stdlib.h> to quench
warnings from newer gcc.
svn path=/trunk/; revision=8938
Diffstat (limited to 'libibex/wordindexmem.c')
-rw-r--r-- | libibex/wordindexmem.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libibex/wordindexmem.c b/libibex/wordindexmem.c index 479e5b0343..a903d26504 100644 --- a/libibex/wordindexmem.c +++ b/libibex/wordindexmem.c @@ -33,7 +33,9 @@ of words, and could then be discarded (:flush()). */ +#include <stdlib.h> #include <stdio.h> +#include <string.h> #include <sys/types.h> #include <sys/stat.h> |