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