issue #106: import binary modules.
parent
0dd5e04eae
commit
23366b4580
@ -0,0 +1,4 @@
|
|||||||
|
|
||||||
|
all: \
|
||||||
|
modules/binary_producing_junk \
|
||||||
|
modules/binary_producing_json
|
@ -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;
|
||||||
|
}
|
@ -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.
Loading…
Reference in New Issue