summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/libstdio/putchar.c
blob: 7e5285a486421ea3ef62823d02b21da1727e1c3a (plain)
1
2
3
4
5
6
#include <stdio.h>

#undef putchar
int putchar(int c) {
  return fputc(c,stdout);
}