aboutsummaryrefslogtreecommitdiffstats
path: root/src/termhooks.h
diff options
context:
space:
mode:
authorEli Zaretskii2013-09-05 14:00:55 +0300
committerEli Zaretskii2013-09-05 14:00:55 +0300
commite7873136dd8dbacbbebf534500355d29a07fed8e (patch)
treee84dbf7101c2a271a12da76d6f17a3c7767ad874 /src/termhooks.h
parent50a5f95ec5e610e8edbe09b03388c83684d87fd7 (diff)
downloademacs-e7873136dd8dbacbbebf534500355d29a07fed8e.tar.gz
emacs-e7873136dd8dbacbbebf534500355d29a07fed8e.zip
Fixed C compilation problems.
Diffstat (limited to 'src/termhooks.h')
-rw-r--r--src/termhooks.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/termhooks.h b/src/termhooks.h
index 437089ebf7a..3e4ec1d7e6d 100644
--- a/src/termhooks.h
+++ b/src/termhooks.h
@@ -664,8 +664,11 @@ extern void close_gpm (int gpm_fd);
664#endif 664#endif
665 665
666#ifdef WINDOWSNT 666#ifdef WINDOWSNT
667extern int curX (struct tty_display_info *); 667extern int cursorX (struct tty_display_info *);
668extern int curY (struct tty_display_info *); 668extern int cursorY (struct tty_display_info *);
669#else
670#define cursorX(t) curX(t)
671#define cursorY(t) curY(t)
669#endif 672#endif
670 673
671INLINE_HEADER_END 674INLINE_HEADER_END