pkg-glib2.0/gio/tests/static-link/app.c
2023-07-04 11:23:22 +02:00

8 lines
146 B
C

#include <gio/gio.h>
int main(int argc, char *argv[])
{
GApplication *app = g_application_new (NULL, 0);
g_object_unref (app);
return 0;
}