mirror of
https://git.freebsd.org/src.git
synced 2026-01-16 23:02:24 +00:00
This new header complies with ISO/IEC 9899:2024 (C23). Contrary to glibc, we do not provide inline definitions in <stdbit.h> as we expect our system compiler to soon recognise these as builtins anyway. Relnotes: yes MFC after: 1 month Reviewed by: adrian Approved by: markj (mentor) Differential Revision: https://reviews.freebsd.org/D53657
19 lines
442 B
Makefile
19 lines
442 B
Makefile
# sources for <stdbit.h>
|
|
.PATH: ${LIBC_SRCTOP}/stdbit
|
|
|
|
SRCS+= stdc_bit_ceil.c \
|
|
stdc_bit_floor.c \
|
|
stdc_bit_width.c \
|
|
stdc_count_ones.c \
|
|
stdc_count_zeros.c \
|
|
stdc_first_leading_one.c \
|
|
stdc_first_leading_zero.c \
|
|
stdc_first_trailing_one.c \
|
|
stdc_first_trailing_zero.c \
|
|
stdc_has_single_bit.c \
|
|
stdc_leading_ones.c \
|
|
stdc_leading_zeros.c \
|
|
stdc_trailing_ones.c \
|
|
stdc_trailing_zeros.c
|
|
|
|
SYM_MAPS+=${LIBC_SRCTOP}/stdbit/Symbol.map
|