source:
trunk/sys/dietlibc/fputs.c
@
131
Last change on this file since 131 was 1, checked in by , 8 years ago | |
---|---|
File size: 225 bytes |
Rev | Line | |
---|---|---|
[1] | 1 | #include "dietstdio.h" |
2 | #include <string.h> | |
3 | ||
4 | int fputs_unlocked(const char*s,FILE*stream) { | |
5 | return fwrite_unlocked(s,strlen(s),1,stream); | |
6 | } | |
7 | ||
8 | int fputs(const char*s,FILE*stream) __attribute__((weak,alias("fputs_unlocked"))); |
Note: See TracBrowser
for help on using the repository browser.