diff options
Diffstat (limited to 'src/nvim/os/input.h')
-rw-r--r-- | src/nvim/os/input.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/nvim/os/input.h b/src/nvim/os/input.h index 6f25efdc7b..4b104b0b50 100644 --- a/src/nvim/os/input.h +++ b/src/nvim/os/input.h @@ -1,15 +1,14 @@ -#ifndef NVIM_OS_INPUT_H -#define NVIM_OS_INPUT_H +#pragma once #include <stdbool.h> -#include <stdint.h> +#include <stdint.h> // IWYU pragma: keep -#include "nvim/api/private/defs.h" +#include "nvim/api/private/defs.h" // IWYU pragma: keep #include "nvim/event/multiqueue.h" +#include "nvim/macros_defs.h" -EXTERN bool used_stdin INIT(= false); +EXTERN bool used_stdin INIT( = false); #ifdef INCLUDE_GENERATED_DECLARATIONS # include "os/input.h.generated.h" #endif -#endif // NVIM_OS_INPUT_H |