blob: b1e4d090af497e65643a945df07dff3844e03385 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#if 0
#include <unistd.h>
ssize_t readlink(const char * restrict path, char * restrict buf, size_t bufsize)
{
return 0;
}
/*
XOPEN(400)
POSIX(200112)
*/
#endif
|