9 lines
84 B
C
9 lines
84 B
C
/* $Header$ */
|
|
#include <stdio.h>
|
|
|
|
fgetc(f)
|
|
register FILE *f;
|
|
{
|
|
return getc(f);
|
|
}
|