13048Sstever@eecs.umich.edu/*
23048Sstever@eecs.umich.edu * Copyright (c) 2006 The Regents of The University of Michigan
33048Sstever@eecs.umich.edu * All rights reserved.
43048Sstever@eecs.umich.edu *
53048Sstever@eecs.umich.edu * Redistribution and use in source and binary forms, with or without
63048Sstever@eecs.umich.edu * modification, are permitted provided that the following conditions are
73048Sstever@eecs.umich.edu * met: redistributions of source code must retain the above copyright
83048Sstever@eecs.umich.edu * notice, this list of conditions and the following disclaimer;
93048Sstever@eecs.umich.edu * redistributions in binary form must reproduce the above copyright
103048Sstever@eecs.umich.edu * notice, this list of conditions and the following disclaimer in the
113048Sstever@eecs.umich.edu * documentation and/or other materials provided with the distribution;
123048Sstever@eecs.umich.edu * neither the name of the copyright holders nor the names of its
133048Sstever@eecs.umich.edu * contributors may be used to endorse or promote products derived from
143048Sstever@eecs.umich.edu * this software without specific prior written permission.
153048Sstever@eecs.umich.edu *
163048Sstever@eecs.umich.edu * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
173048Sstever@eecs.umich.edu * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
183048Sstever@eecs.umich.edu * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
193048Sstever@eecs.umich.edu * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
203048Sstever@eecs.umich.edu * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
213048Sstever@eecs.umich.edu * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
223048Sstever@eecs.umich.edu * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
233048Sstever@eecs.umich.edu * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
243048Sstever@eecs.umich.edu * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
253048Sstever@eecs.umich.edu * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
263048Sstever@eecs.umich.edu * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
273048Sstever@eecs.umich.edu *
283048Sstever@eecs.umich.edu * Authors: Steve Reinhardt
293048Sstever@eecs.umich.edu */
303048Sstever@eecs.umich.edu
313048Sstever@eecs.umich.edu#include <stdio.h>
323048Sstever@eecs.umich.edu
3312881Sjason@lowepower.comint main(int argc, char* argv[])
343048Sstever@eecs.umich.edu{
353048Sstever@eecs.umich.edu    printf("Hello world!\n");
3612881Sjason@lowepower.com    return 0;
373048Sstever@eecs.umich.edu}
383048Sstever@eecs.umich.edu
39