]> pd.if.org Git - pdclib/blob - personalities/__personality.h
Minor doc extension.
[pdclib] / personalities / __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 #ifndef __PDCLIB_PERSONALITY_H
11 #define __PDCLIB_PERSONALITY_H __PDCLIB_PERSONALITY_H
12
13 // This structure is required by time.h and wchar.h.
14 struct tm;
15
16 // This type is required by wchar.h and wctype.h.
17 typedef wint_t;
18
19 // #undef this if environment does not support _Imaginary.
20 #define __PERSONALITY_SUPPORTS_IMAGINARY
21
22 #endif // __PDCLIB_PERSONALITY_H