0
0
mirror of https://github.com/vim/vim.git synced 2025-09-27 04:14:06 -04:00

patch 8.0.1735: flexible array member feature not supported by HP-UX

Problem:    Flexible array member feature not supported by HP-UX. (John
            Marriott)
Solution:   Do not use the flexible array member feature of C99.
This commit is contained in:
Bram Moolenaar
2018-04-18 23:01:13 +02:00
parent f98a39ca57
commit 285e335869
6 changed files with 50 additions and 75 deletions

View File

@@ -511,7 +511,7 @@ typedef struct buffheader buffheader_T;
struct buffblock
{
buffblock_T *b_next; /* pointer to next buffblock */
char_u b_str[]; /* contents (flexible array) */
char_u b_str[1]; /* contents (actually longer) */
};
/*
@@ -519,7 +519,7 @@ struct buffblock
*/
struct buffheader
{
buffblock_T *bh_first; /* first block of the list */
buffblock_T bh_first; /* first (dummy) block of list */
buffblock_T *bh_curr; /* buffblock for appending */
int bh_index; /* index for reading */
int bh_space; /* space in bh_curr for appending */