]> pd.if.org Git - pdclib/blobdiff - functions/string/strpbrk.c
Added dummy test drivers to each *.c file, and target 'test' to Makefile.
[pdclib] / functions / string / strpbrk.c
index 8926cc8e00c76cbbd9e77476b357b09fb84ae738..bc402636516ea47b90fe5aaad622787a5db30a16 100644 (file)
@@ -28,3 +28,12 @@ char * strpbrk( const char * s1, const char * s2 )
     }
     return NULL;
 }
+
+#warning Test driver missing.
+
+#ifdef TEST
+int main()
+{
+    return 0;
+}
+#endif