X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=functions%2Fstring%2Fmemcmp.c;h=3743f781d9b6d9341a17f782f550b0bff469c12f;hp=323c5862db071c0378b954fe775de69ab3ad6aab;hb=d865c4403fc91d1f1ac95ba76febcee9f429bb97;hpb=2040228f27d623585d339dec175c4e779ca9edb5 diff --git a/functions/string/memcmp.c b/functions/string/memcmp.c index 323c586..3743f78 100644 --- a/functions/string/memcmp.c +++ b/functions/string/memcmp.c @@ -27,6 +27,7 @@ int memcmp( const void * s1, const void * s2, size_t n ) #endif #ifdef TEST + #include "_PDCLIB_test.h" int main( void ) @@ -38,4 +39,5 @@ int main( void ) TESTCASE( memcmp( xxxxx, abcde, 1 ) > 0 ); return 0; } + #endif