blob: ec13f72b01e151dde230d43f7d50913ee942120d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#include <bits/linux/linux_unistd.h>
#include <bits/ensure.h>
#include <errno.h>
#include <mlibc/posix-sysdeps.hpp>
#include <unistd.h>
int dup3(int oldfd, int newfd, int flags) {
if(oldfd == newfd) {
errno = EINVAL;
return -1;
}
MLIBC_CHECK_OR_ENOSYS(mlibc::sys_dup2, -1);
if(int e = mlibc::sys_dup2(oldfd, flags, newfd); e) {
errno = e;
return -1;
}
return newfd;
}
int vhangup(void) {
__ensure(!"Not implemented");
__builtin_unreachable();
}
int getdtablesize(void){
return sysconf(_SC_OPEN_MAX);
}
int syncfs(int) {
__ensure(!"Not implemented");
__builtin_unreachable();
}
|