Skip to content

Commit f324a10

Browse files
committed
Build: not using CHAR_BIT size check
1 parent d4f1124 commit f324a10

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/include/mbedtls/check_config.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@
3232
* We assume CHAR_BIT is 8 in many places. In practice, this is true on our
3333
* target platforms, so not an issue, but let's just be extra sure.
3434
*/
35-
#include <limits.h>
36-
#if CHAR_BIT != 8
37-
#error "mbed TLS requires a platform with 8-bit chars"
38-
#endif
35+
//#include <limits.h>
36+
//#if CHAR_BIT != 8
37+
//#error "mbed TLS requires a platform with 8-bit chars"
38+
//#endif
3939

4040
#if defined(_WIN32)
4141
#if !defined(MBEDTLS_PLATFORM_C)

0 commit comments

Comments
 (0)