#include <unistd.h>
#include <linux/fs.h>
int sys_pipe2(int * fd, int flags)
{
sys_pipe(fd);
return 0;
}