diff options
Diffstat (limited to 'editors')
-rw-r--r-- | editors/vi.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/editors/vi.c b/editors/vi.c index cdfb27c..61e988c 100644 --- a/editors/vi.c +++ b/editors/vi.c @@ -750,7 +750,10 @@ static int query_screen_dimensions(void) return err; } #else -# define query_screen_dimensions() (0) +static ALWAYS_INLINE int query_screen_dimensions(void) +{ + return 0; +} #endif static void edit_file(char *fn) |