diff options
Diffstat (limited to 'Objects/intobject.c')
-rw-r--r-- | Objects/intobject.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Objects/intobject.c b/Objects/intobject.c index 2953ffa..e9c35d7 100644 --- a/Objects/intobject.c +++ b/Objects/intobject.c @@ -43,7 +43,9 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #define CHAR_BIT 8 #endif +#ifndef LONG_BIT #define LONG_BIT (CHAR_BIT * sizeof(long)) +#endif /* Standard Booleans */ |