]> pd.if.org Git - pdclib/blobdiff - platform/example/internals/_PDCLIB_config.h
Added imaxdiv_t (for inttypes.h).
[pdclib] / platform / example / internals / _PDCLIB_config.h
index 6864eb9a4b11f6b8e68566b5a1be13fe10305b39..4251522bc4ec88d0b787c2878f5d16cdafe7b3c8 100644 (file)
@@ -141,10 +141,19 @@ struct _PDCLIB_lldiv_t
 
 /* Largest supported integer type. Implementation note: see _PDCLIB_atomax(). */
 #define _PDCLIB_intmax long long int
-#define _PDCLIB_INTMAX LLINT
+#define _PDCLIB_INTMAX LLONG
 /* You are also required to state the literal suffix for the intmax type      */
 #define _PDCLIB_INTMAX_LITERAL ll
 
+/* <inttypes.h> defines imaxdiv(), which is equivalent to the div() function  */
+/* family (see further above) with intmax_t as basis.                         */
+
+struct _PDCLIB_imaxdiv_t
+{
+    _PDCLIB_intmax quot;
+    _PDCLIB_intmax rem;
+};
+
 /* -------------------------------------------------------------------------- */
 /* Floating Point                                                             */
 /* -------------------------------------------------------------------------- */