repo.or.cz
/
glibc
/
history.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix syntax of value type of sysconf, pathconf.
[glibc/history.git]
/
mach
/
syscalls.awk
blob
c57c86135ab6eebefa490686dd2d9e3addededc4
1
BEGIN
{
calls=
""
}
2
3
{
4
calls = calls
" "
$
1
;
5
print
"sysno-"
$
1
" = "
$
2
;
6
}
7
8
END
{
print
"mach-syscalls := "
calls
}