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