Changeset 1abcf1d in mainline for uspace/lib/c/generic/io/io.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
- File:
-
- 1 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
Note:
See TracChangeset
for help on using the changeset viewer.