File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -148,14 +148,14 @@ immutable enum :chtype
148
148
__gshared WINDOW * stdscr;
149
149
__gshared WINDOW * curscr;
150
150
__gshared WINDOW * newscr;
151
- __gshared char ttytype[] ;
151
+ __gshared char [] ttytype;
152
152
__gshared int COLORS ;
153
153
__gshared int COLOR_PAIRS ;
154
154
__gshared int LINES ;
155
155
__gshared int COLS ;
156
156
__gshared int TABSIZE ;
157
157
__gshared int ESCDELAY ;
158
- __gshared chtype acs_map [256 ];
158
+ __gshared chtype[256 ] acs_map ;
159
159
160
160
161
161
@@ -307,7 +307,7 @@ immutable size_t CCHARW_MAX = 5;
307
307
struct cchar_t
308
308
{
309
309
attr_t attr;
310
- wchar_t chars [CCHARW_MAX ];
310
+ wchar_t[CCHARW_MAX ] chars ;
311
311
}
312
312
313
313
struct WINDOW
@@ -368,7 +368,7 @@ struct _nc_eventlist
368
368
{
369
369
int count;
370
370
int result_flags; /* _NC_EVENT_TIMEOUT_MSEC or _NC_EVENT_FILE_READABLE */
371
- _nc_event* events [1 ];
371
+ _nc_event* [1 ] events ;
372
372
}
373
373
374
374
int wgetch_events (WINDOW * win, _nc_eventlist* nc); /* experimental */
You can’t perform that action at this time.
0 commit comments