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
This commit is contained in:
committed by
Kjartan Maraas
parent
a525821bc7
commit
4c2f2ea4a7
@ -1,3 +1,9 @@
|
||||
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.
|
||||
|
||||
2001-04-24 Chris Toshok <toshok@ximian.com>
|
||||
|
||||
* e-host-utils.h: remove prototype for e_gethostbyname_init.
|
||||
|
||||
@ -12,6 +12,7 @@
|
||||
|
||||
#include "e-gui-utils.h"
|
||||
|
||||
#include <glib.h>
|
||||
#include <gtk/gtksignal.h>
|
||||
#include <gtk/gtkalignment.h>
|
||||
#include <libgnome/gnome-defs.h>
|
||||
|
||||
@ -20,12 +20,12 @@
|
||||
|
||||
*/
|
||||
|
||||
#include "e-memory.h"
|
||||
|
||||
#include <string.h> /* memset() */
|
||||
#include <stdlib.h> /* alloca() */
|
||||
#include <glib.h>
|
||||
|
||||
#include "e-memory.h"
|
||||
|
||||
#define s(x) /* strv debug */
|
||||
|
||||
/*#define TIMEIT*/
|
||||
|
||||
@ -1,4 +1,6 @@
|
||||
|
||||
#include "e-msgport.h"
|
||||
|
||||
#include <sys/time.h>
|
||||
#include <sys/types.h>
|
||||
#include <unistd.h>
|
||||
@ -10,8 +12,6 @@
|
||||
|
||||
#include <glib.h>
|
||||
|
||||
#include "e-msgport.h"
|
||||
|
||||
#define m(x) /* msgport debug */
|
||||
#define t(x) /* thread debug */
|
||||
|
||||
|
||||
@ -20,14 +20,15 @@
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#include "e-pilot-map.h"
|
||||
|
||||
#include <string.h> /* memset(), strcmp() */
|
||||
#include <stdlib.h>
|
||||
#include <glib.h>
|
||||
#include <gnome-xml/parser.h>
|
||||
#include <libgnome/gnome-defs.h>
|
||||
#include <libgnome/gnome-util.h>
|
||||
|
||||
#include "e-pilot-map.h"
|
||||
|
||||
typedef struct
|
||||
{
|
||||
char *uid;
|
||||
|
||||
@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user