diff options
author | kremlin <ian@kremlin.cc> | 2014-08-16 09:45:34 +0800 |
---|---|---|
committer | kremlin <ian@kremlin.cc> | 2014-08-16 09:45:34 +0800 |
commit | 4c220bedf5e8d90eb14de56a5ca654f1ac304bcb (patch) | |
tree | d6db81ae896be1de865f5c2d15ec2346346daa1a /src/main.c | |
parent | 89048d5b9f63b1fbc3d1520221500ed139dbc28b (diff) | |
download | systembsd-4c220bedf5e8d90eb14de56a5ca654f1ac304bcb.tar systembsd-4c220bedf5e8d90eb14de56a5ca654f1ac304bcb.tar.gz systembsd-4c220bedf5e8d90eb14de56a5ca654f1ac304bcb.tar.bz2 systembsd-4c220bedf5e8d90eb14de56a5ca654f1ac304bcb.tar.lz systembsd-4c220bedf5e8d90eb14de56a5ca654f1ac304bcb.tar.xz systembsd-4c220bedf5e8d90eb14de56a5ca654f1ac304bcb.tar.zst systembsd-4c220bedf5e8d90eb14de56a5ca654f1ac304bcb.zip |
get rid of main.c and references to it, it has been unused for a while now
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/src/main.c b/src/main.c deleted file mode 100644 index 346d87e..0000000 --- a/src/main.c +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Copyright (c) 2014 Ian Sutton <ian@kremlin.cc> - * - * Permission to use, copy, modify, and distribute this software for any - * purpose with or without fee is hereby granted, provided that the above - * copyright notice and this permission notice appear in all copies. - * - * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES - * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF - * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR - * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES - * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN - * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF - * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - */ - -#include <gio/gio.h> -#include <glib.h> -#include <glib/gprintf.h> -#include <glib/gstdio.h> - -int main() { - - GMainLoop *mloop; - mloop = g_main_loop_new(NULL, TRUE); - - g_main_loop_run(mloop); - g_main_loop_unref(mloop); - - return 0; -} |