summaryrefslogtreecommitdiff
path: root/ulib.c
blob: 543323cf408d9a68177d28af8926f20110b43a3a (plain)
1
2
3
4
5
6
7
8
9
10
int
puts(char *s)
{
  int i;

  for(i = 0; s[i]; i++)
    cons_putc(s[i]);
  return i;
}