File: app.c

package info (click to toggle)
glib2.0 2.87.2-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 67,436 kB
  • sloc: ansic: 546,337; python: 9,937; sh: 1,612; xml: 1,511; perl: 1,223; cpp: 551; makefile: 308; javascript: 11
file content (8 lines) | stat: -rw-r--r-- 146 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
#include <gio/gio.h>

int main(int argc, char *argv[])
{
  GApplication *app = g_application_new (NULL, 0);
  g_object_unref (app);
  return 0;
}