summaryrefslogtreecommitdiffstats
path: root/t/recipes/checks/languages/golang/import-path/control-file-golang-built-using/build-spec/orig/basic.c
blob: 7dea5a030df01615f32312f544eb4f923036788b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <stdio.h>

int
main(void)
{
    char t[10];
    printf("Hello world!\n");
    /* Bad choice for reading from stdin, but it forces a stack
       protector, so meh.
     */
    gets (t);
}