X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstring%2Fstrncat.c;h=44dcb402614b0e7ff397f7a20b9f3922e075d340;hb=02c1ddcae6c88b55d2f4de825ee6c6456150b8ae;hp=ff9e389e97b5542fe1e7cfea9512bb157582ae94;hpb=c2f1367984ba4153d892062759c3813020b65a9a;p=pdclib diff --git a/functions/string/strncat.c b/functions/string/strncat.c index ff9e389..44dcb40 100644 --- a/functions/string/strncat.c +++ b/functions/string/strncat.c @@ -8,6 +8,7 @@ Permission is granted to use, modify, and / or redistribute at will. */ +#include <_PDCLIB_aux.h> #include char * strncat( char * _PDCLIB_restrict s1, const char * _PDCLIB_restrict s2, size_t n ) @@ -27,3 +28,5 @@ char * strncat( char * _PDCLIB_restrict s1, const char * _PDCLIB_restrict s2, si } return rc; } + +#warning Test driver missing.