]> git.saurik.com Git - apple/boot.git/blobdiff - i386/boot1u/string.c
boot-122.tar.gz
[apple/boot.git] / i386 / boot1u / string.c
index 16c379f50925a4e5b7dce9c57c559a640e8afb9c..91e17910a1bf80e42efc1955f287367aa3b50158 100644 (file)
@@ -1,12 +1,12 @@
 /*
- * Copyright (c) 1999-2002 Apple Computer, Inc. All rights reserved.
+ * Copyright (c) 1999-2003 Apple Computer, Inc. All rights reserved.
  *
  * @APPLE_LICENSE_HEADER_START@
  * 
- * Portions Copyright (c) 1999-2002 Apple Computer, Inc.  All Rights
+ * Portions Copyright (c) 1999-2003 Apple Computer, Inc.  All Rights
  * Reserved.  This file contains Original Code and/or Modifications of
  * Original Code as defined in and that are subject to the Apple Public
- * Source License Version 1.2 (the "License").  You may not use this file
+ * Source License Version 2.0 (the "License").  You may not use this file
  * except in compliance with the License.  Please obtain a copy of the
  * License at http://www.apple.com/publicsource and read it before using
  * this file.
@@ -47,7 +47,7 @@ void * memcpy(void * dst, const void * src, size_t len)
 
 void bcopy(const void * src, void * dst, size_t len)
 {
-       memcpy(dst, src, len);
+    memcpy(dst, src, len);
 }
 
 void bzero(void * dst, size_t len)