emulator: Clean up PATH_MAX for win32(mingw)
authorSeokYeon Hwang <syeon.hwang@samsung.com>
Thu, 24 Jan 2013 11:31:36 +0000 (20:31 +0900)
committerSeokYeon Hwang <syeon.hwang@samsung.com>
Thu, 24 Jan 2013 11:31:36 +0000 (20:31 +0900)
Signed-off-by: SeokYeon Hwang <syeon.hwang@samsung.com>
tizen/src/maru_common.h

index 96c9104..3aacef9 100644 (file)
 
 #include "config-host.h"
 
+#if !defined(PATH_MAX)
 #if defined(MAX_PATH)
 #define PATH_MAX    MAX_PATH
-#elif !defined(PATH_MAX)
+#else
 #define PATH_MAX    256
 #endif
+#endif
 
 // W/A for preserve larger continuous heap for RAM.
 extern void *preallocated_ptr;