Sign in
chromium
/
external
/
github.com
/
Kitware
/
CMake
/
master
/
.
/
Tests
/
FindGTK2
/
gio
/
main.c
blob: ebed1fc3c3e55f7c9ea28fc89b2c97886da851be [
file
]
#include
<gio/gio.h>
int
main
(
int
argc
,
char
*
argv
[])
{
GFile
*
file
=
g_file_new_for_path
(
"path"
);
g_object_unref
(
file
);
return
0
;
}