logo

oasis

Own branch of Oasis Linux (upstream: <https://git.sr.ht/~mcf/oasis/>) git clone https://anongit.hacktivis.me/git/oasis.git

scno.awk (162B)


  1. BEGIN {
  2. FS = "[][\"]"
  3. }
  4. {
  5. name = $4
  6. number = int($2)
  7. print "#ifndef __NR_" name
  8. print "# define __NR_" name " (SYSCALL_BIT | " number ")"
  9. print "#endif"
  10. }