MacLO/src/main.c

21 lines
315 B
C
Raw Normal View History

// Copyright (c) Jon Thysell <http://jonthysell.com>
// Licensed under the MIT License.
2021-12-08 22:35:06 +00:00
/**
* @file main.c
*
* This file provides the main() entry point.
*/
#include "MacLO.h"
2021-12-08 22:35:06 +00:00
/**
* Entry point for the application.
*/
void main(void)
{
MacLO_ToolBoxInit();
MacLO_AppInit();
MacLO_MainLoop();
}