diff options
-rw-r--r-- | test/dt_arith.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/test/dt_arith.c b/test/dt_arith.c index 52673e1..2df3fd9 100644 --- a/test/dt_arith.c +++ b/test/dt_arith.c @@ -57,9 +57,10 @@ const char *FILENAME[] = { }; /* - * Count up or down depending on whether the machine is big endian or little - * endian. If local variable `endian' is H5T_ORDER_BE then the result will - * be I, otherwise the result will be Z-(I+1). + * Count up or down depending on whether the machine is big endian, little + * endian, or VAX (OpenVMS). If local variable `endian' is H5T_ORDER_BE then + * the result will be I, otherwise the result will be Z-(I+1). VAX is printed + * as little endian. */ #define ENDIAN(Z,I,E) (H5T_ORDER_BE==E?(I):(Z)-((I)+1)) |