00001 00007 /* Embedded XINU, Copyright (C) 2007. All rights reserved. */ 00008 00009 #include <kernel.h> 00010 #include <device.h> 00011 #include <tty.h> 00012 00019 devcall ttyPutChar(device *pdev, uchar ch) 00020 { 00021 return ttyWrite(pdev, &ch, 1); 00022 }