1 /*---------------------------------------------------------------------------*
2 Project: TwlSDK - demos - FS - overlay
3 File: func_1.c
4
5 Copyright 2007 Nintendo. All rights reserved.
6
7 These coded instructions, statements, and computer programs contain
8 proprietary information of Nintendo of America Inc. and/or Nintendo
9 Company Ltd., and are protected by Federal copyright law. They may
10 not be disclosed to third parties or copied or duplicated in any form,
11 in whole or in part, without the prior written consent of Nintendo.
12
13 $Date:: 2007-11-07#$
14 $Rev: 2172 $
15 $Author: yosizaki $
16 *---------------------------------------------------------------------------*/
17
18
19 #include <nitro.h>
20
21 #include "func.h"
22
23
func_1(void)24 void func_1(void)
25 {
26 static int i = 0;
27 ++i;
28 OS_TPrintf("here is func_1. called %d time%s.\n", i, (i == 1) ? "" : "s");
29 }
30