]> pd.if.org Git - pdclib/blobdiff - functions/string/strcat.c
Added a warning about missing test drivers.
[pdclib] / functions / string / strcat.c
index 422565d15c388d2583957bfbc4c1ae43d5cc2174..f6a7d15f2246c456ef534a4d7850f3a8e62fd534 100644 (file)
@@ -20,3 +20,5 @@ char * strcat( char * _PDCLIB_restrict s1, const char * _PDCLIB_restrict s2 )
     while ( (*s1++ = *s2++) );
     return rc;
 }
+
+#warning Test driver missing.