5 void __io_putchar (
char );
7 void _SMALL_PRINTF_puts(
const char *ptr,
int len, FILE *fp)
9 if ( fp && ( fp->_file == -1 )
10 && (fp->_flags & (__SWR | __SSTR) ) )
23 __io_putchar ( *ptr++ );
27 int puts(
const char *str)
29 int len = strlen ( str );
30 _SMALL_PRINTF_puts(str, len, 0) ;
31 __io_putchar (
'\n' );