From: Jim Meyering Date: Sun, 3 Dec 2000 10:59:44 +0000 (+0000) Subject: (CHAR_BIT): Define. X-Git-Tag: TEXTUTILS-2_0_9~2 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=4f96dfa43e223ac51a5ea2acc303d036d0a1313f;p=thirdparty%2Fcoreutils.git (CHAR_BIT): Define. --- diff --git a/src/sys2.h b/src/sys2.h index c1fa634084..b7afd5822a 100644 --- a/src/sys2.h +++ b/src/sys2.h @@ -547,6 +547,10 @@ enum # define PID_T_MAX TYPE_MAXIMUM (pid_t) #endif +#ifndef CHAR_BIT +# define CHAR_BIT 8 +#endif + /* Use this to suppress gcc's `...may be used before initialized' warnings. */ #ifdef lint # define IF_LINT(Code) Code