fix tests
[m6w6/ext-psi] / tests / pipe / pipe.psi
index deb11d01711243d2787992287971386175780034..f0c0b1c43af268ffa908d82641eb364be11fd258 100644 (file)
@@ -1,8 +1,9 @@
+lib "crypt";
 
-extern int pipe(int fds[2]);
+#include <unistd.h>
 
 function \pipe(array &$fds = null) : int {
-       return to_int(pipe);
-       let fds = calloc(2, int);
-       set $fds = to_array(fds[2]);
+       return pipe(fildes) as to_int(pipe);
+       let fildes = calloc(2, sizeof(int));
+       set $fds = to_array(*fildes, 2, to_int(*fildes));
 }