remove kvm's R macro
[freebsd-src/fkvm-freebsd.git] / contrib / less / mkfuncs.awk
blobdea28acebf5216036fd9fa3c5f8fc0b5544d0435
1 BEGIN { FS="("; state = 0 }
3 /^ public/ { ftype = $0; state = 1 }
5 { if (state == 1)
6 state = 2
7 else if (state == 2)
8 { print ftype,$1,"();"; state = 0 }