]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/one-true-awk/bugs-fixed/decr-NF.awk
Implement pci_enable_msi() and pci_disable_msi() in the LinuxKPI.
[FreeBSD/FreeBSD.git] / contrib / one-true-awk / bugs-fixed / decr-NF.awk
1 BEGIN {
2         $0 = "a b c d e f"
3         print NF
4         OFS = ":"
5         NF--
6         print $0
7         print NF
8         NF++
9         print $0
10         print NF
11 }