*/
#include <_PDCLIB_int.h>
+#include <stdlib.h>
+
+#ifndef REGTEST
int atoi( const char * s )
{
return (int) _PDCLIB_atomax( s );
}
+#endif
+
#ifdef TEST
#include <_PDCLIB_test.h>
*/
#include <_PDCLIB_int.h>
+#include <stdlib.h>
+
+#ifndef REGTEST
long int atol( const char * s )
{
return (long int) _PDCLIB_atomax( s );
}
+#endif
+
#ifdef TEST
#include <_PDCLIB_test.h>
*/
#include <_PDCLIB_int.h>
+#include <stdlib.h>
+
+#ifndef REGTEST
long long int atoll( const char * s )
{
return (long long int) _PDCLIB_atomax( s );
}
+#endif
+
#ifdef TEST
#include <_PDCLIB_test.h>