diff options
Diffstat (limited to 'src/nvim/ascii.h')
-rw-r--r-- | src/nvim/ascii.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/nvim/ascii.h b/src/nvim/ascii.h index 96d6fe214a..efe00d5e4d 100644 --- a/src/nvim/ascii.h +++ b/src/nvim/ascii.h @@ -1,5 +1,4 @@ -#ifndef NVIM_ASCII_H -#define NVIM_ASCII_H +#pragma once #include <stdbool.h> @@ -184,5 +183,3 @@ static inline bool ascii_isspace(int c) { return (c >= 9 && c <= 13) || c == ' '; } - -#endif // NVIM_ASCII_H |