gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 1 of 1 for fundef:__BIT (0.00 seconds)
t2ex
bsd_source/t2ex/network/net/src_bsd/sys/cdefs.h - 13.5KB - 402 lines
381: /* __BIT(n): nth bit, where __BIT(0) == 0x1. */
382: #define __BIT(__n)      \
383:         (((__n) >= NBBY * sizeof(uintmax_t)) ? 0 : ((uintmax_t)1 << (__n)))