summaryrefslogtreecommitdiff
path: root/misc/elf2diff.c
blob: 1057d3cb2edbae355fec628914c1dbed12aad1a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

#include <stdio.h>

static void show_me(int n)
{
    printf("Hello World %d\n", n);

}

int main(void)
{
    show_me(NUMBER);

    return 0;

}