summaryrefslogtreecommitdiff
path: root/core/host/main.c
blob: f370e4b5614db8d3c3acfea1814479c0b70a885f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

/* Entry point of unit test executable */

#include "task.h"
#include "timer.h"

int main(void)
{
	timer_init();

	task_start();

	return 0;
}