blob: 421de4579a7e0c4183b484c6b0c9f8586bca146e (
plain)
1
2
3
4
5
6
7
8
9
|
#include <libc.h> // for weak_reference
#include <stdio.h> // for fputc, FILE, putc, putc_unlocked
int putc(int c, FILE *stream)
{
return fputc(c, stream);
}
weak_reference(putc, putc_unlocked);
|