]> pd.if.org Git - pdclib/blobdiff - functions/inttypes/imaxdiv.c
SVN properties cleanup.
[pdclib] / functions / inttypes / imaxdiv.c
old mode 100755 (executable)
new mode 100644 (file)
index be93b99..94e69e2
@@ -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;
 }