summaryrefslogtreecommitdiff
path: root/misc/elf2diff.c
diff options
context:
space:
mode:
Diffstat (limited to 'misc/elf2diff.c')
-rw-r--r--misc/elf2diff.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/misc/elf2diff.c b/misc/elf2diff.c
new file mode 100644
index 0000000..1057d3c
--- /dev/null
+++ b/misc/elf2diff.c
@@ -0,0 +1,16 @@
+
+#include <stdio.h>
+
+static void show_me(int n)
+{
+ printf("Hello World %d\n", n);
+
+}
+
+int main(void)
+{
+ show_me(NUMBER);
+
+ return 0;
+
+}