X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=functions%2Finttypes%2Fimaxdiv.c;h=94e69e23f93c30cd4e1bf19c8ec01c1053a133e4;hp=be93b99cfc0b453072d344e29cf934240b725221;hb=b189506b1b895940933bdfc5d6d6ae5d0ba65721;hpb=29510491be6e3e0b95872920c371024ed444c1e5 diff --git a/functions/inttypes/imaxdiv.c b/functions/inttypes/imaxdiv.c index be93b99..94e69e2 100755 --- a/functions/inttypes/imaxdiv.c +++ b/functions/inttypes/imaxdiv.c @@ -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; }