From 5e72c513bf034bb4f657380aec567e3ebce447a2 Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Wed, 2 Oct 2013 09:23:46 -0700 Subject: [PATCH] Remove #define _BITSIZE 32. I've no idea what _BITSIZE was supposed to be, glibc doesn't have it, the BSDs don't have it, and no code is currently using it. But having it set unconditionally to 32 sounds like a bad idea. Change-Id: I900235c1489afba891fff0bc3b43e9d593249a4f --- libc/include/stdint.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/libc/include/stdint.h b/libc/include/stdint.h index c795893d3..6e2f311d3 100644 --- a/libc/include/stdint.h +++ b/libc/include/stdint.h @@ -256,8 +256,6 @@ typedef int64_t intmax_t; # define WINT_MIN INT32_MIN #endif -#define _BITSIZE 32 - /* Keep the kernel from trying to define these types... */ #define __BIT_TYPES_DEFINED__