extern int __VERIFIER_nondet_int(void); int foo(int x){ while (x >= 0) { x = x + __VERIFIER_nondet_int(); } return 0; }