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

putchar.c « spu « machine « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 67eb599768d990a5caa4f453c78e208d51d8a8b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#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 */

  return __send_to_ppe(SPE_C99_SIGNALCODE, SPE_C99_PUTCHAR, &c);
}

#endif /* ! _REENT_ONLY */