FreeCalypso > hg > freecalypso-sw
view target-utils/libprintf/puts.c @ 538:e23796f8bd47
gsm-fw/L1/include/l1_defty.h: include path for cust_os.h
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Sat, 02 Aug 2014 03:27:46 +0000 |
parents | 40f607bb0a2c |
children |
line wrap: on
line source
void puts(s) char *s; { int c; while (c = *s++) putchar(c); putchar('\n'); }