arosc.library: Use __inline__ instead of inline (needed for '-ansi' compilation)
[AROS.git] / compiler / clib / include / aros / types / wchar_t.h
blobb4fa9c2f874c4eb944d427cd63f94fcfb440977c
1 #ifndef _AROS_TYPES_WCHAR_T_H
2 #define _AROS_TYPES_WCHAR_T_H
4 /*
5 Copyright © 2010-2012, The AROS Development Team. All rights reserved.
6 $Id: /aros/branches/ABI_V1/trunk-aroscsplit/AROS/compiler/arosstdc/include/aros/types/wchar_t.h 36769 2011-01-11T21:35:35.950252Z verhaegs $
7 */
9 #ifndef __cplusplus
11 #ifdef __WCHAR_TYPE__
12 typedef __WCHAR_TYPE__ wchar_t;
13 #else
14 typedef short wchar_t;
15 #endif
17 #endif
19 #endif /* _AROS_TYPES_WCHAR_T_H */