]> pd.if.org Git - pdclib/blobdiff - internals/_PDCLIB_int.h
Ugly workaround to keep wrappers from negating error value.
[pdclib] / internals / _PDCLIB_int.h
index 317173eeffaade97ea36e3aac15a7ee9530bb05d..8f2cf74ffb467618bd5ac588d52e14f2b34ea46c 100644 (file)
@@ -261,7 +261,7 @@ _PDCLIB_intmax_t _PDCLIB_atomax( const char * s );
 
 /* Two helper functions used by strtol(), strtoul() and long long variants.   */
 const char * _PDCLIB_strtox_prelim( const char * p, char * sign, int * base );
-_PDCLIB_uintmax_t _PDCLIB_strtox_main( const char ** p, int base, _PDCLIB_uintmax_t error, _PDCLIB_uintmax_t limval, int limdigit );
+_PDCLIB_uintmax_t _PDCLIB_strtox_main( const char ** p, int base, _PDCLIB_uintmax_t error, _PDCLIB_uintmax_t limval, _PDCLIB_uintmax_t limdigit, char * sign );
 
 /* Digits array used by various integer conversion functions in <stdlib.h>    */
 extern char _PDCLIB_digits[];