mirror of
https://github.com/oasislinux/oasis.git
synced 2026-03-23 11:32:48 +01:00
12 lines
162 B
Awk
12 lines
162 B
Awk
BEGIN {
|
|
FS = "[][\"]"
|
|
}
|
|
|
|
{
|
|
name = $4
|
|
number = int($2)
|
|
print "#ifndef __NR_" name
|
|
print "# define __NR_" name " (SYSCALL_BIT | " number ")"
|
|
print "#endif"
|
|
}
|