summaryrefslogtreecommitdiff
path: root/Zend/zend_strtod.h
diff options
context:
space:
mode:
authorEdin Kadribasic <edink@php.net>2004-11-04 02:04:39 +0000
committerEdin Kadribasic <edink@php.net>2004-11-04 02:04:39 +0000
commit5675c50dc27a698bae6f4dfa9be30118e69b7dbd (patch)
treeae6b409e86d83369b1ba1dfeadd2b2f7fda86171 /Zend/zend_strtod.h
parentadfebe8c6f2a21408988f8b0472ec0365fffa22a (diff)
downloadphp-git-5675c50dc27a698bae6f4dfa9be30118e69b7dbd.tar.gz
Make zend_strtod compile on windows
Diffstat (limited to 'Zend/zend_strtod.h')
-rw-r--r--Zend/zend_strtod.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/Zend/zend_strtod.h b/Zend/zend_strtod.h
index 3c7820645e..2fbaceaedd 100644
--- a/Zend/zend_strtod.h
+++ b/Zend/zend_strtod.h
@@ -22,7 +22,10 @@
* can be found in zend_strtod.c */
#ifndef ZEND_STRTOD_H
#define ZEND_STRTOD_H
+#include <zend.h>
-double zend_strtod(const char *s00, char **se);
+BEGIN_EXTERN_C()
+ZEND_API double zend_strtod(const char *s00, char **se);
+END_EXTERN_C()
#endif