1 
2 /*------------------------------------------------------------------------------
3  *
4  * File:        network.h
5  * Description: Common public header file for networking subsystem
6  *
7  * Copyright (C) Nintendo.  All rights reserved.
8  * These coded instructions, statements, and computer programs contain
9  * proprietary information of Nintendo of America Inc. and/or Nintendo
10  * Company Ltd., and are protected by Federal copyright law.  They may
11  * not be disclosed to third parties or copied or duplicated in any form,
12  * in whole or in part, without the prior written consent of Nintendo.
13  *
14  *------------------------------------------------------------------------------
15  */
16 #ifndef __NETWORK_H__
17 #define __NETWORK_H__
18 
19 /* socket api headers */
20 #include <cafe/net/so.h>
21 
22 /* DNS resolver API headers */
23 #include <cafe/net/netdb.h>
24 
25 #endif/*__NETWORK_H__*/
26