]> pd.if.org Git - pdclib/blobdiff - functions/string/strchr.c
Added a warning about missing test drivers.
[pdclib] / functions / string / strchr.c
index ced1d552154e5a49eab4582fc8edd2ef08e2f601..a575f6deea1b15e44b65ef94826a1f1ddc607b29 100644 (file)
@@ -21,3 +21,5 @@ char * strchr( const char * s, int c )
     } while ( *s++ );
     return NULL;
 }
+
+#warning Test driver missing.