X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstring%2Fstrncpy.c;h=da1397a93caaf2a7a1b6b3ebf5499f941f1f8236;hb=b3b47892170124cf28a2cfb5ff4aeb227989aa21;hp=efb6480468391a0bf35fae0e8001bee7d0d5c1d9;hpb=b189506b1b895940933bdfc5d6d6ae5d0ba65721;p=pdclib diff --git a/functions/string/strncpy.c b/functions/string/strncpy.c index efb6480..da1397a 100644 --- a/functions/string/strncpy.c +++ b/functions/string/strncpy.c @@ -1,5 +1,3 @@ -/* $Id$ */ - /* strncpy( char *, const char *, size_t ) This file is part of the Public Domain C Library (PDCLib). @@ -32,7 +30,8 @@ char * strncpy( char * _PDCLIB_restrict s1, const char * _PDCLIB_restrict s2, si #endif #ifdef TEST -#include <_PDCLIB_test.h> + +#include "_PDCLIB_test.h" int main( void ) { @@ -53,4 +52,5 @@ int main( void ) TESTCASE( s[3] == 'd' ); return TEST_RESULTS; } + #endif