OSDN Git Service

- trim any trailing whitespace
[uclinux-h8/uClibc.git] / libc / string / powerpc / memcpy.c
index bcbb806..dd39e6f 100644 (file)
@@ -62,7 +62,7 @@ void *memcpy(void *to, const void *from, size_t n)
        do {
                *++tmp_to = *++tmp_from;
        } while (--n);
-       
+
        return to;
  align:
        rem = 4 - rem;