]> pd.if.org Git - pdclib/blobdiff - functions/string/strncpy.c
Added Makefile and moved internal headers into seperate directory (allowing easier...
[pdclib] / functions / string / strncpy.c
index 614ca13e097384fbf1d4e8bf52bc2d3874ad8e20..ed5965d148ddbd5236288cbc521d39423911db0c 100644 (file)
@@ -8,6 +8,7 @@
    Permission is granted to use, modify, and / or redistribute at will.
 */
 
+#include <_PDCLIB_aux.h>
 #include <string.h>
 
 char * strncpy( char * _PDCLIB_restrict s1, const char * _PDCLIB_restrict s2, size_t n )
@@ -26,3 +27,5 @@ char * strncpy( char * _PDCLIB_restrict s1, const char * _PDCLIB_restrict s2, si
     }
     return rc;
 }
+
+#warning Test driver missing.