diff options
author | Kjartan Maraas <kmaraas@gnome.org> | 2001-05-25 06:06:47 +0800 |
---|---|---|
committer | Kjartan Maraas <kmaraas@src.gnome.org> | 2001-05-25 06:06:47 +0800 |
commit | 562a10c291a69e7c854f191e2d1829a8b2b67b04 (patch) | |
tree | 29259498815ec0804a58a822517762ce6a16dd1c /widgets | |
parent | 4f43db365be2d917955985025f1231170db15db9 (diff) | |
download | gsoc2013-evolution-562a10c291a69e7c854f191e2d1829a8b2b67b04.tar gsoc2013-evolution-562a10c291a69e7c854f191e2d1829a8b2b67b04.tar.gz gsoc2013-evolution-562a10c291a69e7c854f191e2d1829a8b2b67b04.tar.bz2 gsoc2013-evolution-562a10c291a69e7c854f191e2d1829a8b2b67b04.tar.lz gsoc2013-evolution-562a10c291a69e7c854f191e2d1829a8b2b67b04.tar.xz gsoc2013-evolution-562a10c291a69e7c854f191e2d1829a8b2b67b04.tar.zst gsoc2013-evolution-562a10c291a69e7c854f191e2d1829a8b2b67b04.zip |
#include <string.h> Same here. Kills warnings on newer gcc.
2001-05-25 Kjartan Maraas <kmaraas@gnome.org>
* e-table-specification.c: #include <string.h>
* e-table-state.c: Same here. Kills warnings on newer gcc.
svn path=/trunk/; revision=9970
Diffstat (limited to 'widgets')
-rw-r--r-- | widgets/table/e-table-specification.c | 1 | ||||
-rw-r--r-- | widgets/table/e-table-state.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/widgets/table/e-table-specification.c b/widgets/table/e-table-specification.c index b5acc017e3..487f3113ad 100644 --- a/widgets/table/e-table-specification.c +++ b/widgets/table/e-table-specification.c @@ -13,6 +13,7 @@ #include "e-table-specification.h" #include <stdlib.h> +#include <string.h> #include <gtk/gtksignal.h> #include <gnome-xml/parser.h> #include <gnome-xml/xmlmemory.h> diff --git a/widgets/table/e-table-state.c b/widgets/table/e-table-state.c index 0e0fa9f6ef..4c6467ce8e 100644 --- a/widgets/table/e-table-state.c +++ b/widgets/table/e-table-state.c @@ -10,6 +10,7 @@ */ #include <config.h> #include <stdlib.h> +#include <string.h> #include <gtk/gtksignal.h> #include <gtk/gtkobject.h> #include <gnome-xml/parser.h> |