aboutsummaryrefslogtreecommitdiffstats
path: root/test/monniaux/tacle-bench-powerwindow/wcclib.c
blob: 20d58fdc0754a28f6642b192a979f1b5cb14e222 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "wcclib.h"


void *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 );
}