summaryrefslogtreecommitdiffstats
path: root/t/recipes/checks/documentation/legacy-binary/build-spec/orig/hello.c
diff options
context:
space:
mode:
Diffstat (limited to 't/recipes/checks/documentation/legacy-binary/build-spec/orig/hello.c')
-rw-r--r--t/recipes/checks/documentation/legacy-binary/build-spec/orig/hello.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/t/recipes/checks/documentation/legacy-binary/build-spec/orig/hello.c b/t/recipes/checks/documentation/legacy-binary/build-spec/orig/hello.c
new file mode 100644
index 0000000..2fb04e1
--- /dev/null
+++ b/t/recipes/checks/documentation/legacy-binary/build-spec/orig/hello.c
@@ -0,0 +1,8 @@
+#include <stdio.h>
+#include <stdlib.h>
+
+int main(int argc, char *argv[]) {
+
+ printf("Hello, World!\n");
+ exit(0);
+}