05ba8a3a07
git-svn-id: http://root.cern.ch/svn/root/trunk@45844 27541ba8-7e3a-0410-8455-c3a389f83636
10 lines
289 B
C
10 lines
289 B
C
// RUN: clang -shared %S/call_lib.c -olibcall_lib%shlibext
|
|
// RUN: cat %s | %cling | FileCheck %s
|
|
|
|
.L libcall_lib
|
|
extern "C" int cling_testlibrary_function();
|
|
int i = cling_testlibrary_function();
|
|
extern "C" int printf(const char* fmt, ...);
|
|
printf("got i=%d\n", i); // CHECK: got i=66
|
|
.q
|