blob: 8ab00984f0d0310a6dc3258d7ae4f5b30cf76ab1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/*
* 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 %p! malloc return %p\n",
(const void *)&main, nums);
free(nums);
return 0;
}
|