summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c
index cae9393..045ebdc 100644
--- a/src/main.c
+++ b/src/main.c
@@ -15,8 +15,14 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
+#include <stdio.h>
+#include "ui.h"
+
int
-main(int argc, char *argv[])
+main (int argc, char* argv[])
{
- return 0;
+ ui *ui = ui_create ();
+ ui_loop (ui);
+ ui_destroy (ui);
+ return 0;
}