aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/lib_run.cpp
diff options
context:
space:
mode:
authorMITSUNARI Shigeo <[email protected]>2012-12-02 16:57:17 +0900
committerMITSUNARI Shigeo <[email protected]>2012-12-02 16:57:17 +0900
commitd548d02e2c9def7c728db2edbc5477a9e41cedbc (patch)
treeb4cab8e78fadf9c7419b8e2008fd8c89597f1d9e /test/lib_run.cpp
parent6f57b3cf03d6fb336af85b123e6348863a9ae849 (diff)
downloadxbyak-d548d02e2c9def7c728db2edbc5477a9e41cedbc.tar.gz
xbyak-d548d02e2c9def7c728db2edbc5477a9e41cedbc.zip
add lib test
Diffstat (limited to 'test/lib_run.cpp')
-rw-r--r--test/lib_run.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/lib_run.cpp b/test/lib_run.cpp
new file mode 100644
index 0000000..d1e1127
--- /dev/null
+++ b/test/lib_run.cpp
@@ -0,0 +1,9 @@
+#include <stdio.h>
+
+int ret123();
+
+int main()
+{
+ printf("ret=%d\n", ret123());
+}
+