diff options
author | Benjamin Otte <otte@redhat.com> | 2012-10-02 19:27:25 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2012-10-02 19:32:52 +0200 |
commit | dd9957769196f138262a7bad1a525ff174cc1df4 (patch) | |
tree | 4e1402b6e7011f5907a0109f256a10094a8d5c0b /gtk/fnmatch.c | |
parent | 101c6a05a996da84ef59d3ccbd27cf75905508ab (diff) | |
download | gtk+-dd9957769196f138262a7bad1a525ff174cc1df4.tar.gz |
gtk: Put private functions in headers and include those
This is part of a bunch of fixes for gcc complaining about
-Wmissing-declarations.
It puts functions into headers and includes those headers both where the
functions are defined and where they function are used.
Diffstat (limited to 'gtk/fnmatch.c')
-rw-r--r-- | gtk/fnmatch.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gtk/fnmatch.c b/gtk/fnmatch.c index f76a1c62d3..0031331cb1 100644 --- a/gtk/fnmatch.c +++ b/gtk/fnmatch.c @@ -28,6 +28,9 @@ */ #include "config.h" + +#include "gtkprivate.h" + #include <string.h> #include <glib.h> |