llvm-project/lldb/test/API/functionalities/scripted_process/baz.c

9 lines
101 B
C

#include "baz.h"
#include <math.h>
int baz(int j) {
int k = sqrt(j);
return k; // break here
}