Exemplo n.º 1
0
void *
chkp_test (void *p)
{
  return __builtin___bnd_set_ptr_bounds (p, 10);
}
Exemplo n.º 2
0
int test (int *p)
{
  p = (int *)__builtin___bnd_set_ptr_bounds (p, sizeof (int));
  return *p;
}