blob: f57fc98210a67b47484c96fb0fb446590af28410 [file] [log] [blame]
Imre Kisf55f2aa2024-05-28 15:55:19 +02001/*
2 * Copyright (c) 2013-2018, Arm Limited and Contributors. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#include <stdio.h>
8
9int puts(const char *s)
10{
11 int count = 0;
12
13 while (*s != '\0') {
14 if (putchar(*s) == EOF)
15 return EOF;
16 s++;
17 count++;
18 }
19
20 if (putchar('\n') == EOF)
21 return EOF;
22
23 return count + 1;
24}