1/** \file
2 *  \brief Hello World application
3 */
4
5/*
6 * Copyright (c) 2010, 2011, 2012, ETH Zurich.
7 * All rights reserved.
8 *
9 * This file is distributed under the terms in the attached LICENSE file.
10 * If you do not find this file, copies can be found by writing to:
11 * ETH Zurich D-INFK, Haldeneggsteig 4, CH-8092 Zurich. Attn: Systems Group.
12 */
13
14#include <stdio.h>
15#include <stdlib.h>
16
17int main(int argc, char *argv[])
18{
19	printf("Hello World\n");
20	return EXIT_SUCCESS;
21}
22