/* TAGS: min c */ #include #include #include int main() { int *a = malloc( 4 ); if ( a ) { __vm_poke( a, _VM_ML_User, 20 ); free( a ); __vm_peek( a, _VM_ML_User ); /* ERROR */ } return 0; }