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