ref: 2e8a4a690e1c5a2cf515432e73cd24ab2a9446a7
dir: /sys/src/ape/cmd/pdksh/ksh_limval.h/
/* Wrapper around the values.h/limits.h includes/ifdefs */ /* $Id$ */ #ifdef HAVE_VALUES_H # include <values.h> #endif /* HAVE_VALUES_H */ /* limits.h is included in sh.h */ #ifndef DMAXEXP # define DMAXEXP 128 /* should be big enough */ #endif #ifndef BITSPERBYTE # ifdef CHAR_BIT # define BITSPERBYTE CHAR_BIT # else # define BITSPERBYTE 8 /* probably true.. */ # endif #endif #ifndef BITS # define BITS(t) (BITSPERBYTE * sizeof(t)) #endif