summaryrefslogtreecommitdiff
path: root/lldb/test/API/lang/c/global_variables/a.c
blob: 4861b7116b057db6fc124f5f243709621228d8f1 (plain)
1
2
3
4
5
6
7
int g_a = 123;
struct Point {
    int x;
    int y;
};
struct Point g_marked_spot = { 20, 21 };