summaryrefslogtreecommitdiffstats
path: root/Tests/FindGTK2/gio/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/FindGTK2/gio/main.c')
-rw-r--r--Tests/FindGTK2/gio/main.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/Tests/FindGTK2/gio/main.c b/Tests/FindGTK2/gio/main.c
new file mode 100644
index 0000000..13f4304
--- /dev/null
+++ b/Tests/FindGTK2/gio/main.c
@@ -0,0 +1,8 @@
+#include <gio/gio.h>
+
+int main(int argc, char *argv[])
+{
+ GFile *file = g_file_new_for_path("path");
+ g_object_unref(file);
+ return 0;
+}