Changeset e106599 in mainline
- Timestamp:
- 2011-07-29T14:59:10Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7dfcc50a
- Parents:
- 1814ee4d (diff), b6759f4 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/pcc/cc/cpp/cpp.c
r1814ee4d re106599 1708 1708 } 1709 1709 1710 s size_t1711 write_all(int fd, const void* buffer, size_t count)1710 static ssize_t 1711 _write_all(int fd, const void* buffer, size_t count) 1712 1712 { 1713 1713 size_t remaining = count; … … 1728 1728 if (obufp == 0) 1729 1729 return; 1730 if (Mflag == 0 && write_all(ofd, outbuf, obufp) < 0)1730 if (Mflag == 0 && _write_all(ofd, outbuf, obufp) < 0) 1731 1731 error("obuf write error"); 1732 1732 lastoch = outbuf[obufp-1];
Note:
See TracChangeset
for help on using the changeset viewer.