X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Finttypes%2Fimaxdiv.c;h=94e69e23f93c30cd4e1bf19c8ec01c1053a133e4;hb=98efea478cdf77a71eea5b2e3706b0a6ab34e1c2;hp=be93b99cfc0b453072d344e29cf934240b725221;hpb=440307cefe82c48ef22e85ef351db43046a60df6;p=pdclib.old diff --git a/functions/inttypes/imaxdiv.c b/functions/inttypes/imaxdiv.c old mode 100755 new mode 100644 index be93b99..94e69e2 --- 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; }