From 63fe8ecdd98f53cc8710746ec9343a9b08838594 Mon Sep 17 00:00:00 2001 From: "Ithamar R. Adema" Date: Fri, 16 Nov 2012 00:48:14 +0100 Subject: [PATCH] wchar.h: fix header comment style. Comment uses C++ style, while it can be compiled in a C-only environment. This broke the ICU cross compilation (done for ARM). --- headers/posix/wchar.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/headers/posix/wchar.h b/headers/posix/wchar.h index eebc4e5bba..8b4f79e3eb 100644 --- a/headers/posix/wchar.h +++ b/headers/posix/wchar.h @@ -30,7 +30,7 @@ typedef struct { void* converter; char charset[64]; unsigned int count; - char data[1024 + 8]; // 1024 bytes for data, 8 for alignment space + char data[1024 + 8]; /* 1024 bytes for data, 8 for alignment space */ } mbstate_t;