568fc262f9b8292153a70bb16809c1c892ce36cb
[m6w6/ext-psi] / tests / pipe / pipe.psi
1 #include <unistd.h>
2
3 function \pipe(array &$fds = null) : int {
4 return pipe(fildes) as to_int(pipe);
5 let fildes = calloc(2, sizeof(int));
6 set $fds = to_array(*fildes, 2, to_int(*fildes));
7 }