test.c

#include <stdio.h>

// gcc -o test test.c

void custom()
{
    printf("Hello World!");
}

int main(int argc, char *argv[])
{
    custom();
    return 0;
}