summaryrefslogtreecommitdiffstats
path: root/libgloss/cris/outbyte.c
blob: 1cb686b9687b2fa7f146ce9731ecf476e966f8a2 (plain)
1
2
3
4
5
6
7
8
9
/* Low-level kind-of-support for CRIS.  Mostly used as a placeholder
   function.  Too small and obvious to warrant a copyright notice.  */

#include <stdio.h>
void
outbyte (int ch)
{
  write (1, &ch, 1);
}