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