]> pd.if.org Git - pdclib/blobdiff - functions/string/strncmp.c
Added #ifdef to allow regression against system lib.
[pdclib] / functions / string / strncmp.c
index 35a9511da11174497d831d91857d56a8511d3dcb..286d41ed6baedaf951428f918828eb9e548a9bdd 100644 (file)
@@ -10,6 +10,8 @@
 
 #include <string.h>
 
+#ifndef REGTEST
+
 int strncmp( const char * s1, const char * s2, size_t n )
 {
     while ( n && ( *s1 == *s2 ) )
@@ -28,6 +30,8 @@ int strncmp( const char * s1, const char * s2, size_t n )
     }
 }
 
+#endif
+
 #ifdef TEST
 #include <_PDCLIB_test.h>