X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=personalities%2Ftemplate%2Fincludes%2F__personality.h;fp=personalities%2Ftemplate%2Fincludes%2F__personality.h;h=2a3cb624cc5dfb6dccf08f58ab2d36ffdc89adce;hb=1d9d92ba957a0b8307c9a65c35867fde68e6533b;hp=0000000000000000000000000000000000000000;hpb=8c8750c2826684c2420571a8007b9606f72c9040;p=pdclib diff --git a/personalities/template/includes/__personality.h b/personalities/template/includes/__personality.h new file mode 100644 index 0000000..2a3cb62 --- /dev/null +++ b/personalities/template/includes/__personality.h @@ -0,0 +1,25 @@ +/* ---------------------------------------------------------------------------- + * $Id$ + * ---------------------------------------------------------------------------- + * Public Domain C Library - http://pdclib.sourceforge.net + * This code is Public Domain. Use, modify, and redistribute at will. + * ---------------------------------------------------------------------------- + * Personality #define's (see personality.txt) + * --------------------------------------------------------------------------*/ + +/* No header guard - including file is expected to check this (improves + * performance) + */ + +#define _PERSONALITY + +/* This structure is required by time.h and wchar.h. */ +struct tm; + +/* This type is required by wchar.h and wctype.h. */ +typedef __wint_t; + +/* #undef this if environment does not support _Imaginary. */ +#define __PERSONALITY_SUPPORTS_IMAGINARY + +#endif /* _PERSONALITY */