aboutsummaryrefslogtreecommitdiff
path: root/packages/Python/lldbsuite/test/functionalities/load_unload/d.cpp
blob: 55f2a6b404b3d6f75980b8e4448eb4a9f40ea801 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//===-- c.c -----------------------------------------------------*- C++ -*-===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

int d_init()
{
    return 123;
}

int d_global = d_init();

int
d_function ()
{ // Find this line number within d_dunction().
    return 700;
}