]> pd.if.org Git - pdclib/blobdiff - functions/string/strcpy.c
Added dummy test drivers to each *.c file, and target 'test' to Makefile.
[pdclib] / functions / string / strcpy.c
index cec5c25192b215462aec0b0d762d4994476b7415..4f028759bf8cd0dddb560788f51c3433672da704 100644 (file)
@@ -18,3 +18,10 @@ char * strcpy( char * _PDCLIB_restrict s1, const char * _PDCLIB_restrict s2 )
 }
 
 #warning Test driver missing.
+
+#ifdef TEST
+int main()
+{
+    return 0;
+}
+#endif