summaryrefslogtreecommitdiff
path: root/src/lib/libcmd/features/symlink
blob: 789db0beb3ad9fe44c368d1ff8581f17c80edbdd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
lib	lchmod note{ lchmod implemented }end execute{
	#include <sys/types.h>
	#include <sys/stat.h>
	#include <errno.h>
	int
	main()
	{
		lchmod("No-FiLe", 0);
		return errno != ENOENT;
	}
}end

lib	lchown note{ lchown implemented }end execute{
	#include <sys/types.h>
	#include <sys/stat.h>
	#include <errno.h>
	int
	main()
	{
		lchown("No-FiLe", 0, 0);
		return errno != ENOENT;
	}
}end