You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
253 B
12 lines
253 B
4 years ago
|
#define __LIBRARY__
|
||
|
#include <unistd.h>
|
||
|
#include <fcntl.h>
|
||
|
#include <sys/types.h>
|
||
|
#include <string.h>
|
||
|
#include <asm/segment.h>
|
||
|
#include <linux/sched.h>
|
||
|
#include <linux/kernel.h>
|
||
|
|
||
|
int sys_pipe2(int fd[2], int flags){
|
||
|
return sys_pipe(fd);
|
||
|
}
|