diff options
Diffstat (limited to 'lldb/test/load_unload/c.c')
-rw-r--r-- | lldb/test/load_unload/c.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/lldb/test/load_unload/c.c b/lldb/test/load_unload/c.c new file mode 100644 index 00000000000..b1778b462d0 --- /dev/null +++ b/lldb/test/load_unload/c.c @@ -0,0 +1,13 @@ +//===-- 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 +c_function () +{ + return 600; +} |