source: trunk/libs/newlib/src/libgloss/cris/outbyte.c @ 444

Last change on this file since 444 was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 207 bytes
Line 
1/* Low-level kind-of-support for CRIS.  Mostly used as a placeholder
2   function.  Too small and obvious to warrant a copyright notice.  */
3
4#include <stdio.h>
5void
6outbyte (int ch)
7{
8  write (1, &ch, 1);
9}
Note: See TracBrowser for help on using the repository browser.