mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2025-01-11 17:04:19 +01:00
15 lines
188 B
Awk
15 lines
188 B
Awk
# from Pat Rankin, rankin@eql.caltech.edu
|
|
|
|
BEGIN { dummy(1); legit(); exit }
|
|
|
|
function dummy(arg)
|
|
{
|
|
return arg
|
|
}
|
|
|
|
function legit( scratch)
|
|
{
|
|
split("1 2 3", scratch)
|
|
return ""
|
|
}
|