summaryrefslogtreecommitdiff
path: root/riscv/riscv-probe/libfemto/std/puts.c
blob: 2dd07f70fcaf006d618f13c1475bdb2b20a59896 (plain)
1
2
3
4
5
6
7
8
9
// See LICENSE for license details.

#include <stdio.h>

int puts(const char *s)
{
    while (*s) putchar(*s++);
    putchar('\n');
}