]> pd.if.org Git - pdclib/blobdiff - functions/string/strncmp.c
Added a warning about missing test drivers.
[pdclib] / functions / string / strncmp.c
index f64984ebc1b9ec4f5fc3a2e396560029124e6b89..624cdbcb190d6013a727dc56bed29b3cb023e143 100644 (file)
@@ -27,3 +27,5 @@ int strncmp( const char * s1, const char * s2, size_t n )
         return ( *s1 - *s2 );
     }
 }
+
+#warning Test driver missing.