X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=_PDCLIB_config.h;h=74eb290286d8178ca66e6cbb5b0db8fc1af7e286;hp=7a749b4123a699aabe1f06268a297a356eb0decd;hb=3220f577b186e04180acd7554a785c60dfb7ebb2;hpb=f8d18e012ee08dc916b4357958496b86c5ad2503 diff --git a/_PDCLIB_config.h b/_PDCLIB_config.h index 7a749b4..74eb290 100644 --- a/_PDCLIB_config.h +++ b/_PDCLIB_config.h @@ -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 */ /* -------------------------------------------------------------------------- */ @@ -93,6 +100,8 @@ #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 ) -