summaryrefslogtreecommitdiffstats
path: root/eglib
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2008-03-11 23:50:18 +0000
committerMarcel Holtmann <marcel@holtmann.org>2008-03-11 23:50:18 +0000
commit856f263c19d082772797a729f8d0a4faa336114c (patch)
tree67bac0a962fd9ae4d1e38a9e34feca94034fa87d /eglib
parente6bce39040a253c0bf62e26ab275e3cf307ed288 (diff)
Import functions correctly
Diffstat (limited to 'eglib')
-rw-r--r--eglib/gmain.c4
-rw-r--r--eglib/gmain.h4
2 files changed, 6 insertions, 2 deletions
diff --git a/eglib/gmain.c b/eglib/gmain.c
index 9474c8d6..8341c664 100644
--- a/eglib/gmain.c
+++ b/eglib/gmain.c
@@ -1715,8 +1715,8 @@ void g_markup_parse_context_free(GMarkupParseContext *context)
g_free(context);
}
-gchar *g_build_pathname_va(const gchar *first_element, va_list args,
- gpointer *data)
+static gchar *g_build_pathname_va(const gchar *first_element,
+ va_list args, gpointer *data)
{
return NULL;
}
diff --git a/eglib/gmain.h b/eglib/gmain.h
index beb9e32e..3fc99ce3 100644
--- a/eglib/gmain.h
+++ b/eglib/gmain.h
@@ -354,4 +354,8 @@ GDir *g_dir_open(const gchar *path, guint flags, GError **error);
const gchar *g_dir_read_name(GDir *dir);
void g_dir_close(GDir *dir);
+/* Various */
+
+gchar *g_build_filename(const gchar *first_element, ...);
+
#endif /* __GMAIN_H */