1#include <stdio.h>
2#include "getc.h"
3
4int getc(FILE *f)
5{
6	return do_getc(f);
7}
8
9weak_alias(getc, _IO_getc);