aboutsummaryrefslogtreecommitdiffstats
path: root/src/simulator/main.c
blob: 6817bbc50cc9a1076e4812c4f44ffd450b638b0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Main starting point for host simulator.
//
// Copyright (C) 2016-2018  Kevin O'Connor <kevin@koconnor.net>
//
// This file may be distributed under the terms of the GNU GPLv3 license.

#include "sched.h" // sched_main

// Main entry point for simulator.
int
main(void)
{
    sched_main();
    return 0;
}