diff options
author | Manish Singh <yosh@src.gnome.org> | 1998-01-09 01:48:19 +0000 |
---|---|---|
committer | Manish Singh <yosh@src.gnome.org> | 1998-01-09 01:48:19 +0000 |
commit | 00000538ed7f6df17c6d160b59047fa465f48658 (patch) | |
tree | d030379d1ffbfc60f43882e29e9599cc3d59fde7 /gtk | |
parent | f873f58d5b576e83b31c09dcce6c75b77caef2ef (diff) | |
download | gtk+-00000538ed7f6df17c6d160b59047fa465f48658.tar.gz |
Added check for inline in configure and updated files to use it.
-Yosh
Diffstat (limited to 'gtk')
-rw-r--r-- | gtk/fnmatch.c | 2 | ||||
-rw-r--r-- | gtk/gtkclist.c | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/gtk/fnmatch.c b/gtk/fnmatch.c index f92beb6f1b..b33b0bc431 100644 --- a/gtk/fnmatch.c +++ b/gtk/fnmatch.c @@ -16,7 +16,7 @@ not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifdef HAVE_CONFIG_H -#include <config.h> +#include "../config.h" #endif #include <errno.h> diff --git a/gtk/gtkclist.c b/gtk/gtkclist.c index 0023061a02..001b750cdb 100644 --- a/gtk/gtkclist.c +++ b/gtk/gtkclist.c @@ -17,6 +17,7 @@ * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include <stdlib.h> +#include "../config.h" #include "gtkclist.h" /* the width of the column resize windows */ @@ -50,7 +51,7 @@ /* returns the column index from a x pixel location in the * context of the clist's hoffset */ -static gint +static inline gint COLUMN_FROM_XPIXEL (GtkCList * clist, gint x) { |