ae75f9d4e5
- 755 -> 644
12 lines
144 B
C
12 lines
144 B
C
/*
|
|
* fputc.c - print an unsigned character
|
|
*/
|
|
/* $Header$ */
|
|
|
|
#include <stdio.h>
|
|
|
|
int
|
|
fputc(int c, FILE *stream)
|
|
{
|
|
return putc(c, stream);
|
|
}
|