blob: 7dcfaee264f27946772e63ecf36934f91d18d5bc (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
// building binutils required this stubs!
long sysconf(int name)
{
return 0;
}
mode_t umask(mode_t mask)
{
return mask;
}
int chmod(const char * path, mode_t mode)
{
return 0;
}
int fcntl(int fd, int cmd, ...)
{
return -1;
}
int lstat(const char *path, struct stat *buf)
{
return -1;
}
char *getwd(char *buf)
{
return buf;
}
int access(const char *pathname, int mode)
{
return 0;
}
int utime(const char *filename, const int *x)
{
return 0;
}
int rmdir (const char *pathname)
{
return -1;
}
int chown(const char *path, uid_t owner, gid_t group)
{
return 0;
}
|