aboutsummaryrefslogtreecommitdiff
path: root/libio/stdio/fputc.c
blob: e87b042bfba3a9c2f7b58eb2c7b8a773acc1739b (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "libioP.h"
#include "stdio.h"

int
fputc(c, fp)
     int c;
     FILE *fp;
{
  CHECK_FILE(fp, EOF);
  return _IO_putc(c, fp);
}