allwinner_a64/android/external/syslinux/com32/samples/hello.c
2018-08-08 16:14:42 +08:00

26 lines
498 B
C

/*
* 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;
}