]> pd.if.org Git - pdclib/blobdiff - functions/inttypes/imaxdiv.c
Some cleanups.
[pdclib] / functions / inttypes / imaxdiv.c
index be93b99cfc0b453072d344e29cf934240b725221..94e69e23f93c30cd4e1bf19c8ec01c1053a133e4 100755 (executable)
@@ -15,7 +15,6 @@ imaxdiv_t imaxdiv( intmax_t numer, intmax_t denom )
     imaxdiv_t rc;
     rc.quot = numer / denom;
     rc.rem  = numer % denom;
-    /* TODO: pre-C99 compilers might require modulus corrections */
     return rc;
 }