mirror of
https://github.com/mii443/wasmer.git
synced 2025-12-06 20:58:28 +00:00
14 lines
210 B
C
Vendored
14 lines
210 B
C
Vendored
#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;
|
|
}
|