summaryrefslogtreecommitdiff
path: root/userland/libc/stdio/puts.c
blob: 4a72e664ee984c370f52f5bef396159664346a9a (plain)
1
2
3
4
5
6
#include <stdio.h>

int puts(const char *s) {
  int rc = printf("%s\n", s);
  return rc;
}