summaryrefslogtreecommitdiffstats
path: root/newlib/libc/machine/spu/putchar.c
blob: 5cf9ed40a118406767e1b5d649311b26a3571124 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <stdio.h>

#include "c99ppe.h"

#undef putchar

#ifndef _REENT_ONLY

int
putchar (c)
     int c;
{
  CHECK_STD_INIT(_REENT);

  /* c gets overwritten before return */

  __send_to_ppe(SPE_C99_SIGNALCODE, SPE_C99_PUTCHAR, &c);

  return c;
}

#endif /* ! _REENT_ONLY */