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 @@ ...@@ -9,23 +9,17 @@
int puts(const char *s) int puts(const char *s)
{ {
int count = 0; int count = 0;
while(*s) while(*s) {
{ if (putchar(*s++) == EOF)
if (putchar(*s++) != EOF) { return EOF;
count++; count++;
} else {
count = EOF;
break;
}
} }
/* According to the puts(3) manpage, the function should write a /* According to the puts(3) manpage, the function should write a
* trailing newline. * trailing newline.
*/ */
if ((count != EOF) && (putchar('\n') != EOF)) if (putchar('\n') == EOF)
count++; return EOF;
else
count = 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