]> pd.if.org Git - pdclib/blobdiff - _PDCLIB_config.h
Fixes to v0.1, added assert.h.
[pdclib] / _PDCLIB_config.h
index 7a749b4123a699aabe1f06268a297a356eb0decd..74eb290286d8178ca66e6cbb5b0db8fc1af7e286 100644 (file)
@@ -9,6 +9,13 @@
    Permission is granted to use, modify, and / or redistribute at will.
 */
 
+/* -------------------------------------------------------------------------- */
+/* Misc                                                                       */
+/* -------------------------------------------------------------------------- */
+
+/* The character (sequence) your platform uses as newline.                    */
+#define _PDCLIB_endl "\n"
+
 /* -------------------------------------------------------------------------- */
 /* Integers                                                                   */
 /* -------------------------------------------------------------------------- */
 
 #define _PDCLIB_intmax long long int
 #define _PDCLIB_INTMAX LLINT
+/* You are also required to state the literal suffix for the intmax type      */
+#define _PDCLIB_INTMAX_LITERAL ll
 
 /* -------------------------------------------------------------------------- */
 /* Floating Point                                                             */
@@ -153,4 +162,3 @@ typedef char * _PDCLIB_va_list;
 #define _PDCLIB_va_copy( dest, src ) ( (dest) = (src), (void)0 )
 #define _PDCLIB_va_end( ap ) ( (ap) = (void *)0, (void)0 )
 #define _PDCLIB_va_start( ap, parmN ) ( (ap) = (char *) &parmN + ( _PDCLIB_va_round(parmN) ), (void)0 )
-