Changeset 879d7745 in mainline
- Timestamp:
- 2013-11-19T07:37:30Z (11 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 18dc93c
- Parents:
- 3b04143
- Location:
- uspace/lib
- Files:
-
- 1 added
- 3 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/Makefile
r3b04143 r879d7745 61 61 generic/bd.c \ 62 62 generic/bd_srv.c \ 63 generic/bitops.c \64 63 generic/cap.c \ 65 64 generic/cfg.c \ -
uspace/lib/c/include/bitops.h
r3b04143 r879d7745 107 107 } 108 108 109 extern int __popcountsi2(int);110 extern int __popcountdi2(long);111 112 109 #endif 113 110 -
uspace/lib/softint/Makefile
r3b04143 r879d7745 35 35 36 36 SOURCES = \ 37 generic/bits.c \ 37 38 generic/comparison.c \ 38 39 generic/division.c \ -
uspace/lib/softint/generic/bits.c
r3b04143 r879d7745 27 27 */ 28 28 29 /** @addtogroup libc29 /** @addtogroup softint 30 30 * @{ 31 31 */ 32 32 33 #include <bit ops.h>33 #include <bits.h> 34 34 35 /** Compute number of set bits in a number. */ 35 36 int __popcountsi2(int a) 36 37 { … … 44 45 } 45 46 47 /** Compute number of set bits in a number. */ 46 48 int __popcountdi2(long a) 47 49 {
Note:
See TracChangeset
for help on using the changeset viewer.