]> pd.if.org Git - pdclib/blobdiff - functions/stdlib/strtol.c
PDCLib includes with quotes, not <>.
[pdclib] / functions / stdlib / strtol.c
index dce035ea1f9bd8a254b36ce9cde74f4e18bbcb63..ce75539e4268c54babf288976daa0316b4506189 100644 (file)
@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /* strtol( const char *, char * *, int )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -25,7 +23,6 @@ long int strtol( const char * s, char ** endptr, int base )
     }
     else
     {
-        /* FIXME: This breaks on some machines that round negatives wrongly */
         rc = (long int)_PDCLIB_strtox_main( &p, (unsigned)base, (uintmax_t)LONG_MIN, (uintmax_t)( LONG_MIN / -base ), (int)( -( LONG_MIN % base ) ), &sign );
     }
     if ( endptr != NULL ) *endptr = ( p != NULL ) ? (char *) p : (char *) s;
@@ -35,7 +32,7 @@ long int strtol( const char * s, char ** endptr, int base )
 #endif
 
 #ifdef TEST
-#include <_PDCLIB_test.h>
+#include "_PDCLIB_test.h"
 
 #include <errno.h>