diff options
-rw-r--r-- | Makefile | 1 | ||||
-rw-r--r-- | src/main.c | 31 |
2 files changed, 0 insertions, 32 deletions
@@ -59,7 +59,6 @@ INVOKE_GENFILE_SCRIPT= \ all: build build: _build_interface_objs - $(CC) -o bin/out.bin $(CFLAGS) $(GLIBEF) $(SRCDIR)/main.c clean: find ./bin -type f -exec rm {} \; 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; -} |