From e4ab88fde5ad3dc273fcee66b03c2892a2d80dac Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Thu, 2 Dec 1999 14:00:01 +0000 Subject: Merged of mcp750 and mvme2307 BSP by Eric Valette . As part of this effort, the mpc750 libcpu code is now shared with the ppc6xx. --- .../powerpc/motorola_powerpc/bootloader/lib.c | 53 ---------------------- 1 file changed, 53 deletions(-) delete mode 100644 c/src/lib/libbsp/powerpc/motorola_powerpc/bootloader/lib.c (limited to 'c/src/lib/libbsp/powerpc/motorola_powerpc/bootloader/lib.c') diff --git a/c/src/lib/libbsp/powerpc/motorola_powerpc/bootloader/lib.c b/c/src/lib/libbsp/powerpc/motorola_powerpc/bootloader/lib.c deleted file mode 100644 index 242f637b5d..0000000000 --- a/c/src/lib/libbsp/powerpc/motorola_powerpc/bootloader/lib.c +++ /dev/null @@ -1,53 +0,0 @@ -/* lib.c - * - * This file contains the implementation of functions that are unresolved - * in the bootloader. Unfortunately it shall not use any object code - * from newlib or rtems because they are not compiled with the right option!!! - * - * You've been warned!!!. - * - * CopyRight (C) 1998, 1999 valette@crf.canon.fr - * - * The license and distribution terms for this file may be - * found in found in the file LICENSE in this distribution or at - * http://www.OARcorp.com/rtems/license.html. - * - * $Id$ - */ - - -void* memset(void *p, int c, unsigned int n) -{ - char *q =p; - for(; n>0; --n) *q++=c; - return p; -} - -void* memcpy(void *dst, const void * src, unsigned int n) -{ - unsigned char *d=dst; - const unsigned char *s=src; - - while(n-- > 0) *d++=*s++; - return dst; -} - -char* strcat(char * dest, const char * src) -{ - char *tmp = dest; - - while (*dest) - dest++; - while ((*dest++ = *src++) != '\0') - ; - return tmp; -} - -int strlen(const char* string) -{ - register int i = 0; - - while (string[i] != '\0') - ++i; - return i; -} -- cgit v1.2.3