summaryrefslogtreecommitdiff
path: root/tests/analysis/disass/hello.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2018-11-18 22:21:14 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2018-11-18 22:21:14 (GMT)
commitea090774bf3b5849422de9af8c294b3e9d00105b (patch)
tree4bd0218b1e260a6d84d3102768452902b1123926 /tests/analysis/disass/hello.c
parent0f914ad3fdcc1ebac5789b55b9677e7868016e21 (diff)
Extended the Python bindings dealing with code blocks.
Diffstat (limited to 'tests/analysis/disass/hello.c')
-rw-r--r--tests/analysis/disass/hello.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/analysis/disass/hello.c b/tests/analysis/disass/hello.c
new file mode 100644
index 0000000..c226e8a
--- /dev/null
+++ b/tests/analysis/disass/hello.c
@@ -0,0 +1,12 @@
+
+#include <stdio.h>
+#include <stdlib.h>
+
+
+int main(void)
+{
+ printf("Hello World!\n");
+
+ return EXIT_SUCCESS;
+
+}