mirror of
https://github.com/diegocr/libnix.git
synced 2026-09-12 11:40:30 +00:00
9 lines
73 B
C
9 lines
73 B
C
|
|
#include <stdio.h>
|
|
|
|
#undef getc
|
|
int getc(FILE *s)
|
|
{
|
|
return fgetc(s);
|
|
}
|