Welcome to mirror list, hosted at ThFree Co, Russian Federation.

outbyte.c « cris « libgloss - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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);
}