# Main preprocessing, some more-or-less machine-independent odds and ends
# (two-byte constants (note byte order known)).
/^=/ {				# Two-byte constant, low byte first.
	print "/" substr($0, 2)
	print "\\" substr($0, 2)
	next
}
/./ { print }			# Something else, leave untouched.
