aboutsummaryrefslogtreecommitdiff
path: root/libgloss/cris/outbyte.c
blob: 210339f8ef18a7c23b56a24b6bdc77d08536ba69 (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 <unistd.h>
void
outbyte (int ch)
{
  write (1, &ch, 1);
}