File:  [DVB] / dietlibc / libpthread / pthread_fputs.c
Revision 1.1: download - view: text, annotated - select for diffs
Fri May 9 04:36:56 2008 UTC (16 years, 1 month ago) by leitner
Branches: MAIN
CVS tags: HEAD
enable additional warnings
shut those warnings up :-)
try to make stdio thread-safe

#include <dietstdio.h>

int fputs(const char*s,FILE*stream) {
  return fwrite(s,strlen(s),1,stream);
}

LinuxTV legacy CVS <linuxtv.org/cvs>