Changeset 1abcf1d in mainline for uspace/lib/c
- Timestamp:
- 2018-04-10T19:43:21Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a69d42e
- Parents:
- 9fa14d8d
- Location:
- uspace/lib/c
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/io/io.c
r9fa14d8d r1abcf1d 733 733 int puts(const char *str) 734 734 { 735 return fputs(str, stdout); 735 if (fputs(str, stdout) < 0) 736 return EOF; 737 return putchar('\n'); 736 738 } 737 739 -
uspace/lib/c/include/stdio.h
r9fa14d8d r1abcf1d 76 76 extern int fputs(const char *, FILE *); 77 77 78 // FIXME: putchar and fputc are byte-oriented. 79 // They shouldn't accept wide characters. 78 80 extern int putchar(wchar_t); 79 81 extern int puts(const char *);
Note:
See TracChangeset
for help on using the changeset viewer.