X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstring%2Fmemset.c;h=dc6a518737c0cd368b553452df136b772ee1405a;hb=3309ec3ad8a5db735eaa2de7f5dc6a331d8e7319;hp=4abb466ebd763b5ef8cdfcdcc91a96037e8c4729;hpb=d18abec50882ca919a52ffc54b2b5c8703cb2864;p=pdclib.old diff --git a/functions/string/memset.c b/functions/string/memset.c index 4abb466..dc6a518 100644 --- a/functions/string/memset.c +++ b/functions/string/memset.c @@ -1,7 +1,5 @@ /* $Id$ */ -/* Release $Name$ */ - /* memset( void *, int, size_t ) This file is part of the Public Domain C Library (PDCLib). @@ -27,10 +25,9 @@ void * memset( void * s, int c, size_t n ) #ifdef TEST #include <_PDCLIB_test.h> -int main() +int main( void ) { char s[] = "xxxxxxxxx"; - BEGIN_TESTS; TESTCASE( memset( s, 'o', 10 ) == s ); TESTCASE( s[9] == 'o' ); TESTCASE( memset( s, '_', 0 ) == s );