summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/libpthread/pthread_fputc.c
blob: 82344b107857b5ba943b8c7aef511353a6dcb640 (plain)
1
2
3
4
5
6
7
8
9
#include <dietstdio.h>

int fputc(int c, FILE *stream) {
  int tmp;
  pthread_mutex_lock(&stream->m);
  tmp=fputc_unlocked(c,stream);
  pthread_mutex_unlock(&stream->m);
  return tmp;
}