source: trunk/sys/dietlibc/fputs.c @ 159

Last change on this file since 159 was 1, checked in by alain, 7 years ago

First import

File size: 225 bytes
Line 
1#include "dietstdio.h"
2#include <string.h>
3
4int fputs_unlocked(const char*s,FILE*stream) {
5  return fwrite_unlocked(s,strlen(s),1,stream);
6}
7
8int fputs(const char*s,FILE*stream) __attribute__((weak,alias("fputs_unlocked")));
Note: See TracBrowser for help on using the repository browser.