summaryrefslogtreecommitdiff
path: root/Zend/zend_strtod.c
diff options
context:
space:
mode:
authorAntony Dovgal <tony2001@php.net>2007-05-04 16:19:57 +0000
committerAntony Dovgal <tony2001@php.net>2007-05-04 16:19:57 +0000
commitb1b4b0a6a77ed13c24884431f36d0d83ce44971f (patch)
tree2ea6dba32d2284f4e76b90acff6dccb756884949 /Zend/zend_strtod.c
parent3f8c011a9a1a20a8f6cb46e0ddb9b862cc1c8f33 (diff)
downloadphp-git-b1b4b0a6a77ed13c24884431f36d0d83ce44971f.tar.gz
fix comments
Diffstat (limited to 'Zend/zend_strtod.c')
-rw-r--r--Zend/zend_strtod.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/zend_strtod.c b/Zend/zend_strtod.c
index 26b816ad8f..4c74541c91 100644
--- a/Zend/zend_strtod.c
+++ b/Zend/zend_strtod.c
@@ -273,9 +273,9 @@ BEGIN_EXTERN_C()
#endif
/* The following definition of Storeinc is appropriate for MIPS processors.
- * * An alternative that might be better on some machines is
- * * #define Storeinc(a,b,c) (*a++ = b << 16 | c & 0xffff)
- * */
+ * An alternative that might be better on some machines is
+ * #define Storeinc(a,b,c) (*a++ = b << 16 | c & 0xffff)
+ */
#if defined(IEEE_LITTLE_ENDIAN) + defined(VAX) + defined(__arm__)
#define Storeinc(a,b,c) (((unsigned short *)a)[1] = (unsigned short)b, \
((unsigned short *)a)[0] = (unsigned short)c, a++)