]> pd.if.org Git - pdclib/blobdiff - personalities/template/includes/__personality.h
Re-import from Subversion.
[pdclib] / personalities / template / includes / __personality.h
diff --git a/personalities/template/includes/__personality.h b/personalities/template/includes/__personality.h
new file mode 100644 (file)
index 0000000..2a3cb62
--- /dev/null
@@ -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 */