9 lines
92 B
C
9 lines
92 B
C
/* $Id$ */
|
|
#include <stdio.h>
|
|
|
|
fputc(c, iop)
|
|
register FILE *iop;
|
|
{
|
|
return putc(c, iop);
|
|
}
|