8322 nl: misleading-indentation
[unleashed/tickless.git] / usr / src / lib / libcmd / common / features / symlink
bloba7d86b09f50a6a72c2087f0c2e269f5dea82c2ec
1 lib     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
12 lib     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