about summary refs log tree commit diff
path: root/make/examples/simple-header/hello.c
blob: 15f1ac714e10e9053a23f1ec3ed91741072b4688 (plain) (blame)
1
2
3
4
5
6
7
8
9
#include <stdio.h>

#include "hello.h"

int main(int argc, char * * argv)
{
    printf("Hello " WHAT "\n");
    return 0;
}