xref: /haiku/headers/posix/wchar_t.h (revision ed6250c95736c0b55da79d6e9dd01369532260c0)
1 /*
2  * Copyright (C) 2002 Marcus Overhagen
3  * All rights reserved.
4  *
5  * Distributed under the terms of the MIT license
6  */
7 #ifndef _WCHAR_T_H
8 #define _WCHAR_T_H
9 
10 #if !defined(__cplusplus) || __GNUC__ < 3
11 typedef unsigned short wchar_t;
12 #endif
13 
14 #endif	/* _WCHAR_T_H */
15 
16