summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2014-08-21 09:08:44 +0200
committerAnatol Belski <ab@php.net>2014-08-21 09:08:44 +0200
commit713e9a7eaa8344061aad0883829c42a651691c34 (patch)
tree399005ab82c0dbbfe40bc5236a1abd43e0c58c92
parent6da2a977fc9acc8463b61a0ce0acdead9c651084 (diff)
downloadphp-git-713e9a7eaa8344061aad0883829c42a651691c34.tar.gz
avoid clash when stdint.h was included after win32/php_stdint.h
-rw-r--r--win32/php_stdint.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/win32/php_stdint.h b/win32/php_stdint.h
index 0d63615c6b..cb5ad17061 100644
--- a/win32/php_stdint.h
+++ b/win32/php_stdint.h
@@ -36,6 +36,10 @@
#ifndef _MSC_STDINT_H_ // [
#define _MSC_STDINT_H_
+#ifndef _STDINT
+# define _STDINT
+#endif
+
#if _MSC_VER > 1000
#pragma once
#endif