- Change #if to #ifdef.

This commit is contained in:
Andi Gutmans 2000-06-03 07:34:20 +00:00
parent 5673378ea6
commit 01d478ba56

View File

@ -36,7 +36,7 @@
# define GLOBAL_CONSTANTS_TABLE CG(zend_constants) # define GLOBAL_CONSTANTS_TABLE CG(zend_constants)
#endif #endif
#if ZEND_WIN32 #ifdef ZEND_WIN32
BOOL WINAPI IsDebuggerPresent(VOID); BOOL WINAPI IsDebuggerPresent(VOID);
#endif #endif
@ -606,7 +606,7 @@ ZEND_API void zend_output_debug_string(zend_bool trigger_break, char *format, ..
va_list args; va_list args;
va_start(args, format); va_start(args, format);
# if ZEND_WIN32 # ifdef ZEND_WIN32
{ {
char output_buf[1024]; char output_buf[1024];