llvm-project/lldb/test/API/functionalities/breakpoint/global_constructor/foo.h

12 lines
119 B
C

#ifndef FOO_H
#define FOO_H
struct LLDB_TEST_API Foo {
Foo();
int x;
};
extern LLDB_TEST_API Foo FooObj;
#endif