FreeCalypso > hg > freecalypso-sw
view target-utils/libprintf/puts.c @ 973:285505f98013
doc/RVTMUX: major updates triggered by new understanding of TM/ETM relationship
author | Mychaela Falconia <falcon@ivan.Harhan.ORG> |
---|---|
date | Sun, 15 Nov 2015 01:42:50 +0000 |
parents | 40f607bb0a2c |
children |
line wrap: on
line source
void puts(s) char *s; { int c; while (c = *s++) putchar(c); putchar('\n'); }