mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-19 04:49:25 +08:00
bd95aa4d33
This macro is unused or expands to nothing.
16 lines
230 B
C
16 lines
230 B
C
#include <stdio.h>
|
|
|
|
#include "c99ppe.h"
|
|
|
|
#ifndef _REENT_ONLY
|
|
|
|
int
|
|
puts (char const * s)
|
|
{
|
|
/* The return value gets written over s
|
|
*/
|
|
return __send_to_ppe(SPE_C99_SIGNALCODE, SPE_C99_PUTS, &s);
|
|
}
|
|
|
|
#endif /* ! _REENT_ONLY */
|