
# ioctld required headers

Import('*')

possible = [
	'linux/kd.h', # linux
	'sys/kbio.h'] # sun/bsd

for h in possible:
	out = conf.CheckHeader([h])
	if out:
		break;

Return('out')

# vim:ts=4:sts=4:sw=4:syntax=python
