Unverified Commit fbdadd01 authored by davidcunado-arm's avatar davidcunado-arm Committed by GitHub
Browse files

Merge pull request #1311 from jonathanwright-ARM/jw/MISRA-EOF-usage

stdlib: remove comparison with EOF macro to comply with MISRA 
parents ff48086b 5ea28277
Showing with 7 additions and 13 deletions
+7 -13
......@@ -9,23 +9,17 @@
int puts(const char *s)
{
int count = 0;
while(*s)
{
if (putchar(*s++) != EOF) {
count++;
} else {
count = EOF;
break;
}
while(*s) {
if (putchar(*s++) == EOF)
return EOF;
count++;
}
/* According to the puts(3) manpage, the function should write a
* trailing newline.
*/
if ((count != EOF) && (putchar('\n') != EOF))
count++;
else
count = EOF;
if (putchar('\n') == EOF)
return EOF;
return count;
return count + 1;
}
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment