]> granicus.if.org Git - php/commitdiff
fix comments
authorAntony Dovgal <tony2001@php.net>
Fri, 4 May 2007 16:19:57 +0000 (16:19 +0000)
committerAntony Dovgal <tony2001@php.net>
Fri, 4 May 2007 16:19:57 +0000 (16:19 +0000)
Zend/zend_strtod.c

index 26b816ad8fcb9e543def05f7faf649a335b81366..4c74541c913998cd4142b6f8d7a3dbdfff808a3a 100644 (file)
@@ -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++)