]> pd.if.org Git - pdclib/blobdiff - functions/inttypes/imaxdiv.c
Comment cleanups.
[pdclib] / functions / inttypes / imaxdiv.c
old mode 100755 (executable)
new mode 100644 (file)
index be93b99..4a89a6d
@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /* lldiv( long long int, long long int )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -15,7 +13,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;
 }