Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
musl
src
stdio
getc.c
pretty
plain
permalink
blame
history
•
9 lines
•
109 B
1
#include <stdio.h>
2
#include "getc.h"
3
4
int getc(FILE *f)
5
{
6
	return do_getc(f);
7
}
8
9
weak_alias(getc, _IO_getc);