Add wasm tacle-bench targets
This commit is contained in:
12
targets/wasm-tacle/app/powerwindow/wcclib.c
Normal file
12
targets/wasm-tacle/app/powerwindow/wcclib.c
Normal file
@ -0,0 +1,12 @@
|
||||
#include "wcclib.h"
|
||||
|
||||
|
||||
void *wcclib_memset( void *s, int c, size_t n )
|
||||
{
|
||||
unsigned char *p = s;
|
||||
|
||||
_Pragma( "loopbound min 1 max 368" )
|
||||
while ( n-- )
|
||||
*p++ = ( unsigned char ) c;
|
||||
return ( s );
|
||||
}
|
||||
Reference in New Issue
Block a user