kernel: move sysdup to libc

This commit is contained in:
2017-01-05 03:02:56 +01:00
parent 882e33b091
commit 2508de40ea
10 changed files with 100 additions and 59 deletions

View File

@ -69,6 +69,12 @@ union FPdbleword
};
};
typedef union FdPair
{
int fd[2];
long aslong;
} FdPair;
typedef __builtin_va_list va_list;
#define va_start(v,l) __builtin_va_start(v,l)