Changeset c8bb1633 in mainline for uspace/lib/posix/source/errno.c
- Timestamp:
- 2013-07-10T08:58:49Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3908355, 4c53333
- Parents:
- 30c1b75 (diff), 98abd40 (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/lib/posix/source/errno.c
r30c1b75 rc8bb1633 32 32 /** @file System error numbers. 33 33 */ 34 #define LIBPOSIX_INTERNAL 35 #define __POSIX_DEF__(x) posix_##x 34 36 35 37 #include "posix/errno.h" … … 43 45 { 44 46 if (*__errno() != 0) { 45 _posix_errno = abs(*__errno());47 _posix_errno = posix_abs(*__errno()); 46 48 *__errno() = 0; 47 49 }
Note:
See TracChangeset
for help on using the changeset viewer.