]> pd.if.org Git - pdclib/blobdiff - functions/string/memmove.c
Added dummy test drivers to each *.c file, and target 'test' to Makefile.
[pdclib] / functions / string / memmove.c
index b46a15ac564df629543b63a785f90fb4d26cc666..38db9d94a2e4d3dad1af059c2b7edeab4aa55d1f 100644 (file)
@@ -32,3 +32,12 @@ void * memmove( void * s1, const void * s2, size_t n )
     }
     return s1;
 }
+
+#warning Test driver missing.
+
+#ifdef TEST
+int main()
+{
+    return 0;
+}
+#endif