[svn-r1512] moved the array before the string in the struct for tstr.h5

This commit is contained in:
Patrick Lu 1999-07-19 13:04:24 -05:00
parent fe79dac33b
commit dc83f3f316

View File

@ -1053,8 +1053,8 @@ char string4[3][20] = { "s1234567890123456789", "s1234567890123456789",
hsize_t dims5[] = { 3, 6};
typedef struct {
char s[12][32];
int a[8][10];
char s[12][32];
} compound_t;
compound_t comp1[3][6];
size_t mdims[2];