summaryrefslogtreecommitdiff
path: root/tests/analysis/disass/hello.c
diff options
context:
space:
mode:
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;
+
+}