diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2020-02-23 16:03:24 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-23 16:03:24 +0100 |
commit | c036e24f39481f2b7872659c076b53435192003d (patch) | |
tree | 423c777bce97daa7f490950aaf48fb1a0efca979 /src/nvim/msgpack_rpc | |
parent | 7591fafd764e9dbcdfe3b28f03fe3c84de893c9e (diff) | |
parent | 0504f2f88dac9a4cf1fe1052a1e00ab203e9cf8e (diff) | |
download | rneovim-c036e24f39481f2b7872659c076b53435192003d.tar.gz rneovim-c036e24f39481f2b7872659c076b53435192003d.tar.bz2 rneovim-c036e24f39481f2b7872659c076b53435192003d.zip |
Merge pull request #11890 from cryptomilk/master-gcc10-fno-common
Fix issues revealed by gcc10 setting -fno-common by default
Diffstat (limited to 'src/nvim/msgpack_rpc')
-rw-r--r-- | src/nvim/msgpack_rpc/channel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/msgpack_rpc/channel.h b/src/nvim/msgpack_rpc/channel.h index 9ff5abdc5f..90e1c7d48b 100644 --- a/src/nvim/msgpack_rpc/channel.h +++ b/src/nvim/msgpack_rpc/channel.h @@ -15,7 +15,7 @@ /// HACK: os/input.c drains this queue immediately before blocking for input. /// Events on this queue are async-safe, but they need the resolved state /// of os_inchar(), so they are processed "just-in-time". -MultiQueue *ch_before_blocking_events; +EXTERN MultiQueue *ch_before_blocking_events INIT(= NULL); #ifdef INCLUDE_GENERATED_DECLARATIONS |