issue #106: import binary modules.

This commit is contained in:
David Wilson 2018-04-01 11:58:06 +01:00
parent 0dd5e04eae
commit 23366b4580
4 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,4 @@
all: \
modules/binary_producing_junk \
modules/binary_producing_json

View File

@ -0,0 +1,13 @@
#include <stdio.h>
int main(void)
{
fprintf(stderr, "binary_producing_json: oh noes\n");
printf("{"
"\"changed\": true, "
"\"failed\": false, "
"\"msg\": \"Hello, world.\""
"}\n");
return 0;
}

View File

@ -0,0 +1,9 @@
#include <stdio.h>
int main(void)
{
fprintf(stderr, "binary_producing_junk: oh noes\n");
printf("Hello, world.\n");
return 0;
}

Binary file not shown.