]> pd.if.org Git - pdclib/blob - personalities/template/includes/__personality.h
Re-import from Subversion.
[pdclib] / personalities / template / includes / __personality.h
1 /* ----------------------------------------------------------------------------
2  * $Id$
3  * ----------------------------------------------------------------------------
4  * Public Domain C Library - http://pdclib.sourceforge.net
5  * This code is Public Domain. Use, modify, and redistribute at will.
6  * ----------------------------------------------------------------------------
7  * Personality #define's (see personality.txt)
8  * --------------------------------------------------------------------------*/
9
10 /* No header guard - including file is expected to check this (improves
11  * performance)
12  */
13
14 #define _PERSONALITY
15
16 /* This structure is required by time.h and wchar.h. */
17 struct tm;
18
19 /* This type is required by wchar.h and wctype.h. */
20 typedef __wint_t;
21
22 /* #undef this if environment does not support _Imaginary. */
23 #define __PERSONALITY_SUPPORTS_IMAGINARY
24
25 #endif /* _PERSONALITY */