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

int fputc(int c, FILE *stream) {
  if (fwrite(&c, 1, 1, stream) > 0) {
    return c;
  }
  return EOF;
}