]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/one-true-awk/bugs-fixed/split-fs-from-array.awk
Implement pci_enable_msi() and pci_disable_msi() in the LinuxKPI.
[FreeBSD/FreeBSD.git] / contrib / one-true-awk / bugs-fixed / split-fs-from-array.awk
1 BEGIN {
2         a[1] = "elephantie"
3         a[2] = "e"
4         print split(a[1],a,a[2]), a[2], a[3], split(a[2],a,a[2])
5 }