aboutsummaryrefslogtreecommitdiff
path: root/com32/samples/hello.c
diff options
context:
space:
mode:
Diffstat (limited to 'com32/samples/hello.c')
-rw-r--r--com32/samples/hello.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/com32/samples/hello.c b/com32/samples/hello.c
new file mode 100644
index 0000000..d3d4d29
--- /dev/null
+++ b/com32/samples/hello.c
@@ -0,0 +1,26 @@
+/*
+ * hello.c - A simple ELF module that sorts a couple of numbers
+ *
+ * Created on: Aug 11, 2008
+ * Author: Stefan Bucur <stefanb@zytor.com>
+ */
+
+#include <stdio.h>
+#include <stdlib.h>
+
+#include "sort.h"
+
+#define NUM_COUNT 10
+#define MAX_NUM 100
+
+int main(int argc __unused, char **argv __unused)
+{
+ int *nums = NULL;
+
+ nums = malloc(NUM_COUNT * sizeof(int));
+ printf("Hello, world, from 0x%08X! malloc return %p\n", (unsigned int)&main, nums);
+
+ free(nums);
+
+ return 0;
+}