FreeCalypso > hg > freecalypso-sw
view target-utils/libprintf/puts.c @ 542:9dd6ca16f13d
gsm-fw/L1/cust0: split between IRAM and XIP code
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Sun, 03 Aug 2014 04:59:30 +0000 |
parents | 40f607bb0a2c |
children |
line wrap: on
line source
void puts(s) char *s; { int c; while (c = *s++) putchar(c); putchar('\n'); }