summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Muizelaar <jmuizelaar@mozilla.com>2011-07-21 01:28:01 -0400
committerJeff Muizelaar <jmuizelaar@mozilla.com>2011-07-21 01:28:01 -0400
commit845bce103c408dca8f7275469bd055b021aca806 (patch)
treeb071680367585a17b085293c79f3670fc6f40661
parentf89ec832f826cd79dba7bd136c57faa3b8d80b55 (diff)
Use C99-style flexible arrays instead of GNU-style
-rw-r--r--qcmsint.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/qcmsint.h b/qcmsint.h
index efe7b15..dd2edf7 100644
--- a/qcmsint.h
+++ b/qcmsint.h
@@ -67,12 +67,7 @@ struct XYZNumber {
struct curveType {
uint32_t count;
-/* Using the C99 flexible array member syntax with IBM compiler */
-#if defined (__IBMC__) || defined (__IBMCPP__)
uInt16Number data[];
-#else
- uInt16Number data[0];
-#endif
};
struct lutType {