diff options
Diffstat (limited to 'phpdbg_utils.c')
-rw-r--r-- | phpdbg_utils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpdbg_utils.c b/phpdbg_utils.c index 4bb671247e..d64d9ad686 100644 --- a/phpdbg_utils.c +++ b/phpdbg_utils.c @@ -31,7 +31,7 @@ #ifdef _WIN32 # include "win32/time.h" #elif defined(HAVE_SYS_IOCTL_H) -# include "sys/ioctl.h" +# include "sys/ioctl.h" #endif ZEND_EXTERN_MODULE_GLOBALS(phpdbg); @@ -391,7 +391,7 @@ PHPDBG_API const char *phpdbg_get_prompt(TSRMLS_D) /* {{{ */ PHPDBG_API int phpdbg_get_terminal_width(TSRMLS_D) /* {{{ */ { int columns; -#ifdef _win32 +#ifdef _WIN32 CONSOLE_SCREEN_BUFFER_INFO csbi; GetConsoleScreenBufferInfo(GetStdHandle(STD_OUTPUT_HANDLE), &csbi); |