repo.or.cz
/
unleashed
/
tickless.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
8322 nl: misleading-indentation
[unleashed/tickless.git]
/
usr
/
src
/
lib
/
libcmd
/
common
/
features
/
symlink
blob
a7d86b09f50a6a72c2087f0c2e269f5dea82c2ec
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
11
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