x Pull in string.h for various mem*() and str*() functions, in an
x Pull in string.h for various mem*() and str*() functions, in an autoconf-friendly way. x
This commit is contained in:
parent
553fa4309e
commit
fc07d22a53
@ -1,3 +1,10 @@
|
||||
Thu Dec 24 14:35:48 1998 Jeff Garzik <jgarzik@pobox.com>
|
||||
|
||||
* gdk/gdkevents.c, gdk/gdkim.c, gdk/gdkrgb.c, gdk/gdkwindow.c,
|
||||
gtk/gtkprogressbar.c:
|
||||
Pull in string.h for various mem*() and str*() functions,
|
||||
in an autoconf-friendly way.
|
||||
|
||||
Thu Dec 24 12:40:45 1998 Jeff Garzik <jgarzik@pobox.com>
|
||||
|
||||
* gdk/gdkfont.c: removed unused var
|
||||
|
@ -1,3 +1,10 @@
|
||||
Thu Dec 24 14:35:48 1998 Jeff Garzik <jgarzik@pobox.com>
|
||||
|
||||
* gdk/gdkevents.c, gdk/gdkim.c, gdk/gdkrgb.c, gdk/gdkwindow.c,
|
||||
gtk/gtkprogressbar.c:
|
||||
Pull in string.h for various mem*() and str*() functions,
|
||||
in an autoconf-friendly way.
|
||||
|
||||
Thu Dec 24 12:40:45 1998 Jeff Garzik <jgarzik@pobox.com>
|
||||
|
||||
* gdk/gdkfont.c: removed unused var
|
||||
|
@ -1,3 +1,10 @@
|
||||
Thu Dec 24 14:35:48 1998 Jeff Garzik <jgarzik@pobox.com>
|
||||
|
||||
* gdk/gdkevents.c, gdk/gdkim.c, gdk/gdkrgb.c, gdk/gdkwindow.c,
|
||||
gtk/gtkprogressbar.c:
|
||||
Pull in string.h for various mem*() and str*() functions,
|
||||
in an autoconf-friendly way.
|
||||
|
||||
Thu Dec 24 12:40:45 1998 Jeff Garzik <jgarzik@pobox.com>
|
||||
|
||||
* gdk/gdkfont.c: removed unused var
|
||||
|
@ -1,3 +1,10 @@
|
||||
Thu Dec 24 14:35:48 1998 Jeff Garzik <jgarzik@pobox.com>
|
||||
|
||||
* gdk/gdkevents.c, gdk/gdkim.c, gdk/gdkrgb.c, gdk/gdkwindow.c,
|
||||
gtk/gtkprogressbar.c:
|
||||
Pull in string.h for various mem*() and str*() functions,
|
||||
in an autoconf-friendly way.
|
||||
|
||||
Thu Dec 24 12:40:45 1998 Jeff Garzik <jgarzik@pobox.com>
|
||||
|
||||
* gdk/gdkfont.c: removed unused var
|
||||
|
@ -1,3 +1,10 @@
|
||||
Thu Dec 24 14:35:48 1998 Jeff Garzik <jgarzik@pobox.com>
|
||||
|
||||
* gdk/gdkevents.c, gdk/gdkim.c, gdk/gdkrgb.c, gdk/gdkwindow.c,
|
||||
gtk/gtkprogressbar.c:
|
||||
Pull in string.h for various mem*() and str*() functions,
|
||||
in an autoconf-friendly way.
|
||||
|
||||
Thu Dec 24 12:40:45 1998 Jeff Garzik <jgarzik@pobox.com>
|
||||
|
||||
* gdk/gdkfont.c: removed unused var
|
||||
|
@ -1,3 +1,10 @@
|
||||
Thu Dec 24 14:35:48 1998 Jeff Garzik <jgarzik@pobox.com>
|
||||
|
||||
* gdk/gdkevents.c, gdk/gdkim.c, gdk/gdkrgb.c, gdk/gdkwindow.c,
|
||||
gtk/gtkprogressbar.c:
|
||||
Pull in string.h for various mem*() and str*() functions,
|
||||
in an autoconf-friendly way.
|
||||
|
||||
Thu Dec 24 12:40:45 1998 Jeff Garzik <jgarzik@pobox.com>
|
||||
|
||||
* gdk/gdkfont.c: removed unused var
|
||||
|
@ -1,3 +1,10 @@
|
||||
Thu Dec 24 14:35:48 1998 Jeff Garzik <jgarzik@pobox.com>
|
||||
|
||||
* gdk/gdkevents.c, gdk/gdkim.c, gdk/gdkrgb.c, gdk/gdkwindow.c,
|
||||
gtk/gtkprogressbar.c:
|
||||
Pull in string.h for various mem*() and str*() functions,
|
||||
in an autoconf-friendly way.
|
||||
|
||||
Thu Dec 24 12:40:45 1998 Jeff Garzik <jgarzik@pobox.com>
|
||||
|
||||
* gdk/gdkfont.c: removed unused var
|
||||
|
@ -23,6 +23,14 @@
|
||||
#include "gdkinput.h"
|
||||
#include "gdkkeysyms.h"
|
||||
|
||||
#if HAVE_CONFIG_H
|
||||
# include <config.h>
|
||||
# if STDC_HEADERS
|
||||
# include <string.h>
|
||||
# endif
|
||||
#endif
|
||||
|
||||
|
||||
typedef struct _GdkIOClosure GdkIOClosure;
|
||||
|
||||
#define DOUBLE_CLICK_TIME 250
|
||||
|
@ -23,6 +23,14 @@
|
||||
#include "gdki18n.h"
|
||||
#include "gdkx.h"
|
||||
|
||||
#if HAVE_CONFIG_H
|
||||
# include <config.h>
|
||||
# if STDC_HEADERS
|
||||
# include <string.h>
|
||||
# endif
|
||||
#endif
|
||||
|
||||
|
||||
/* If this variable is FALSE, it indicates that we should
|
||||
* avoid trying to use multibyte conversion functions and
|
||||
* assume everything is 1-byte per character
|
||||
|
15
gdk/gdkrgb.c
15
gdk/gdkrgb.c
@ -23,8 +23,19 @@
|
||||
*/
|
||||
|
||||
#include <math.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#if HAVE_CONFIG_H
|
||||
# include <config.h>
|
||||
# if STDC_HEADERS
|
||||
# include <stdio.h>
|
||||
# include <stdlib.h>
|
||||
# include <string.h>
|
||||
# endif
|
||||
#else
|
||||
# include <stdio.h>
|
||||
# include <stdlib.h>
|
||||
#endif
|
||||
|
||||
|
||||
#define ENABLE_GRAYSCALE
|
||||
|
||||
|
@ -26,8 +26,19 @@
|
||||
#include "gdkinput.h"
|
||||
#include "gdkprivate.h"
|
||||
#include "MwmUtil.h"
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#if HAVE_CONFIG_H
|
||||
# include <config.h>
|
||||
# if STDC_HEADERS
|
||||
# include <stdlib.h>
|
||||
# include <stdio.h>
|
||||
# include <string.h>
|
||||
# endif
|
||||
#else
|
||||
# include <stdlib.h>
|
||||
# include <stdio.h>
|
||||
#endif
|
||||
|
||||
|
||||
#ifdef HAVE_SHAPE_EXT
|
||||
#include <X11/extensions/shape.h>
|
||||
|
@ -23,6 +23,14 @@
|
||||
#include "gdkinput.h"
|
||||
#include "gdkkeysyms.h"
|
||||
|
||||
#if HAVE_CONFIG_H
|
||||
# include <config.h>
|
||||
# if STDC_HEADERS
|
||||
# include <string.h>
|
||||
# endif
|
||||
#endif
|
||||
|
||||
|
||||
typedef struct _GdkIOClosure GdkIOClosure;
|
||||
|
||||
#define DOUBLE_CLICK_TIME 250
|
||||
|
@ -23,6 +23,14 @@
|
||||
#include "gdki18n.h"
|
||||
#include "gdkx.h"
|
||||
|
||||
#if HAVE_CONFIG_H
|
||||
# include <config.h>
|
||||
# if STDC_HEADERS
|
||||
# include <string.h>
|
||||
# endif
|
||||
#endif
|
||||
|
||||
|
||||
/* If this variable is FALSE, it indicates that we should
|
||||
* avoid trying to use multibyte conversion functions and
|
||||
* assume everything is 1-byte per character
|
||||
|
@ -26,8 +26,19 @@
|
||||
#include "gdkinput.h"
|
||||
#include "gdkprivate.h"
|
||||
#include "MwmUtil.h"
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#if HAVE_CONFIG_H
|
||||
# include <config.h>
|
||||
# if STDC_HEADERS
|
||||
# include <stdlib.h>
|
||||
# include <stdio.h>
|
||||
# include <string.h>
|
||||
# endif
|
||||
#else
|
||||
# include <stdlib.h>
|
||||
# include <stdio.h>
|
||||
#endif
|
||||
|
||||
|
||||
#ifdef HAVE_SHAPE_EXT
|
||||
#include <X11/extensions/shape.h>
|
||||
|
@ -17,7 +17,16 @@
|
||||
* Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#if HAVE_CONFIG_H
|
||||
# include <config.h>
|
||||
# if STDC_HEADERS
|
||||
# include <string.h>
|
||||
# include <stdio.h>
|
||||
# endif
|
||||
#else
|
||||
# include <stdio.h>
|
||||
#endif
|
||||
|
||||
#include "gtkprogressbar.h"
|
||||
#include "gtksignal.h"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user