diff options
| author | Eli Zaretskii | 2013-09-05 14:00:55 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2013-09-05 14:00:55 +0300 |
| commit | e7873136dd8dbacbbebf534500355d29a07fed8e (patch) | |
| tree | e84dbf7101c2a271a12da76d6f17a3c7767ad874 /src/termhooks.h | |
| parent | 50a5f95ec5e610e8edbe09b03388c83684d87fd7 (diff) | |
| download | emacs-e7873136dd8dbacbbebf534500355d29a07fed8e.tar.gz emacs-e7873136dd8dbacbbebf534500355d29a07fed8e.zip | |
Fixed C compilation problems.
Diffstat (limited to 'src/termhooks.h')
| -rw-r--r-- | src/termhooks.h | 7 |
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 |
| 667 | extern int curX (struct tty_display_info *); | 667 | extern int cursorX (struct tty_display_info *); |
| 668 | extern int curY (struct tty_display_info *); | 668 | extern 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 | ||
| 671 | INLINE_HEADER_END | 674 | INLINE_HEADER_END |