Changeset 3558ba93 in mainline for uspace/lib/posix/include
- Timestamp:
- 2013-12-09T15:55:40Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5b89d43b
- Parents:
- 12735849 (diff), 9521eca (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. - Location:
- uspace/lib/posix/include/posix
- Files:
-
- 2 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/include/posix/float.h
r12735849 r3558ba93 59 59 #undef DBL_EPSILON 60 60 #define DBL_EPSILON __DBL_EPSILON__ 61 #undef LDBL_EPSILON 62 #define LDBL_EPSILON __LDBL_EPSILON__ 61 63 #undef FLT_RADIX 62 64 #define FLT_RADIX __FLT_RADIX__ … … 69 71 #undef FLT_MANT_DIG 70 72 #define FLT_MANT_DIG __FLT_MANT_DIG__ 73 #undef LDBL_MIN 74 #define LDBL_MIN __LDBL_MIN__ 75 #undef LDBL_MAX 76 #define LDBL_MAX __LDBL_MAX__ 71 77 #undef LDBL_MANT_DIG 72 78 #define LDBL_MANT_DIG __LDBL_MANT_DIG__ -
uspace/lib/posix/include/posix/setjmp.h
r12735849 r3558ba93 27 27 */ 28 28 29 /** @addtogroup lib c29 /** @addtogroup libposix 30 30 * @{ 31 31 */ 32 32 33 #include <bitops.h> 34 35 int __popcountsi2(int a) 36 { 37 int bits = 0; 38 for (unsigned int i = 0; i < sizeof(a) * 8; i++) { 39 if (((a >> i) & 1) != 0) { 40 bits++; 41 } 42 } 43 return bits; 44 } 45 33 /* 34 * Just a pass-through to libc setjmp. 35 */ 36 #include "libc/setjmp.h" 46 37 47 38 /** @} -
uspace/lib/posix/include/posix/stdlib.h
r12735849 r3558ba93 56 56 #define _Exit exit 57 57 extern int __POSIX_DEF__(atexit)(void (*func)(void)); 58 extern void exit(int status) ;58 extern void exit(int status) __attribute__((noreturn)); 59 59 extern void abort(void) __attribute__((noreturn)); 60 60
Note:
See TracChangeset
for help on using the changeset viewer.
