]> pd.if.org Git - pdclib/blobdiff - functions/_PDCLIB/atomax.c
No exceptions to regtestdrivers anymore.
[pdclib] / functions / _PDCLIB / atomax.c
index 2c860cfaa6fadcaa6d47db8013da853d0d5b6609..f05a8af8e074e2337e1defdb5b1ada90c49093fb 100644 (file)
@@ -4,10 +4,11 @@
    Permission is granted to use, modify, and / or redistribute at will.
 */
 
-#include "_PDCLIB_int.h"
 #include <string.h>
 #include <ctype.h>
 
+#ifndef REGTEST
+
 _PDCLIB_intmax_t _PDCLIB_atomax( const char * s )
 {
     _PDCLIB_intmax_t rc = 0;
@@ -25,15 +26,19 @@ _PDCLIB_intmax_t _PDCLIB_atomax( const char * s )
     return ( sign == '+' ) ? rc : -rc;
 }
 
+#endif
+
 #ifdef TEST
 #include "_PDCLIB_test.h"
 
 int main( void )
 {
+#ifndef REGTEST
     /* basic functionality */
     TESTCASE( _PDCLIB_atomax( "123" ) == 123 );
     /* testing skipping of leading whitespace and trailing garbage */
     TESTCASE( _PDCLIB_atomax( " \n\v\t\f123xyz" ) == 123 );
+#endif
     return TEST_RESULTS;
 }