1 /*---------------------------------------------------------------------------*
2   Project:  rsodemo
3   File:     static.h
4 
5   Copyright 2006 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   $NoKeywords: $
14  *---------------------------------------------------------------------------*/
15 
16 #ifndef __STATIC_H__
17 #define __STATIC_H__
18 
19 extern void staticFuncA(void);
20 extern void staticFuncB(void);
21 extern void staticFuncC(void);
22 
23 #endif  // __STATIC_H__
24