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

int putc(int c, FILE *stream) {
  return fputc(c, stream);
}