FreeCalypso > hg > freecalypso-sw
view target-utils/libprintf/puts.c @ 892:eed6dc6aca3c
gsm-fw/comlib/cl_imei.c: hell with TI's different return code types
author | Space Falcon <falcon@ivan.Harhan.ORG> |
---|---|
date | Mon, 29 Jun 2015 22:57:27 +0000 |
parents | 40f607bb0a2c |
children |
line wrap: on
line source
void puts(s) char *s; { int c; while (c = *s++) putchar(c); putchar('\n'); }