summaryrefslogtreecommitdiffstats
path: root/t/recipes/checks/cruft/cruft-sphinx-documentation/build-spec/orig/src/hello.c
blob: ff2cb8d914e4828461bd7418bc614eb1dce17f02 (plain)
1
2
3
4
5
6
7
8
9
10
#include <stdio.h>

void hello() {
    printf("hello");
}

int main()
{
    hello();
}