ceilf-ieee: Work around bug on MacOS X 10.5.
[pspp] / lib / memmove.c
index c5ff8b520df9802d0ada61ee5a940a73e8d35d0c..0f040540c0dbfe050ce5305a8aba4d3a9bf1bb4f 100644 (file)
@@ -20,7 +20,7 @@ memmove (void *dest0, void const *source0, size_t length)
     {
       /* Moving from hi mem to low mem; start at beginning.  */
       for (; length; --length)
-       *dest++ = *source++;
+        *dest++ = *source++;
     }
   return dest0;
 }