mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-13 14:25:32 +00:00
14 lines
210 B
C
14 lines
210 B
C
|
#include <sys/types.h>
|
||
|
#include <unistd.h>
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
int main() {
|
||
|
int mypipe[2];
|
||
|
printf("pipe\n");
|
||
|
if (pipe(mypipe)) {
|
||
|
printf("error\n");
|
||
|
}
|
||
|
return 0;
|
||
|
}
|