]> pd.if.org Git - pdclib/blobdiff - functions/stdlib/atoll.c
Added #ifdef to allow for regression against system library.
[pdclib] / functions / stdlib / atoll.c
index 62abef1e53183fdbb8c165c70949b77bf607f996..767a4533babf555289e64e244614c5ff4420216b 100644 (file)
@@ -9,12 +9,17 @@
 */
 
 #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>