diff options
author | Kjartan Maraas <kmaraas@gnome.org> | 2001-04-24 17:23:12 +0800 |
---|---|---|
committer | Kjartan Maraas <kmaraas@src.gnome.org> | 2001-04-24 17:23:12 +0800 |
commit | 4c2f2ea4a75da1728bfa1938045fbdd4b2e4658b (patch) | |
tree | 60b31b3bed4fcdeefa767b59d5d5151ce3d70591 /e-util/e-sexp.c | |
parent | a525821bc76f67a72ec06524421de2191f97dd23 (diff) | |
download | gsoc2013-evolution-4c2f2ea4a75da1728bfa1938045fbdd4b2e4658b.tar.gz gsoc2013-evolution-4c2f2ea4a75da1728bfa1938045fbdd4b2e4658b.tar.zst gsoc2013-evolution-4c2f2ea4a75da1728bfa1938045fbdd4b2e4658b.zip |
Added #include <glib.h> and move corresponding local headers to the top to
2001-04-24 Kjartan Maraas <kmaraas@gnome.org>
* e-gui-utils.c, e-memory, e-msgport.c, e-pilot-map, e-sexp.c:
Added #include <glib.h> and move corresponding local headers
to the top to catch missing includes in them. Tip from clahey.
svn path=/trunk/; revision=9537
Diffstat (limited to 'e-util/e-sexp.c')
-rw-r--r-- | e-util/e-sexp.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/e-util/e-sexp.c b/e-util/e-sexp.c index 21fb751314..4ba42cb336 100644 --- a/e-util/e-sexp.c +++ b/e-util/e-sexp.c @@ -77,14 +77,15 @@ Execute a sequence. The last function return is the return type. */ +#include "e-sexp.h" + #include <stdio.h> #include <stdlib.h> #include <time.h> #include <string.h> +#include <glib.h> #include "e-memory.h" -#include "e-sexp.h" - #define p(x) /* parse debug */ #define r(x) /* run debug */ #define d(x) /* general debug */ |