]> pd.if.org Git - pdclib/blobdiff - functions/inttypes/imaxdiv.c
PDCLib includes with quotes, not <>.
[pdclib] / functions / inttypes / imaxdiv.c
old mode 100755 (executable)
new mode 100644 (file)
index be93b99..553f22e
@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /* lldiv( long long int, long long int )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -15,14 +13,13 @@ 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;
 }
 
 #endif
 
 #ifdef TEST
-#include <_PDCLIB_test.h>
+#include "_PDCLIB_test.h"
 
 int main( void )
 {