X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=_PDCLIB_config.h;h=74eb290286d8178ca66e6cbb5b0db8fc1af7e286;hb=c0169638bd02098717cb23fbbca3bcc4e4caccf0;hp=7a749b4123a699aabe1f06268a297a356eb0decd;hpb=b8af801d66db2f108caefba4d43abf1b49ab5456;p=pdclib 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 ) -