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

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