wdenk | 507bbe3 | 2004-04-18 21:13:41 +0000 | [diff] [blame] | 1 | /* |
| 2 | * include/asm-microblaze/string.h -- Architecture specific string routines |
| 3 | * |
| 4 | * Copyright (C) 2003 John Williams <jwilliams@itee.uq.edu.au> |
| 5 | * Copyright (C) 2001,2002 NEC Corporation |
| 6 | * Copyright (C) 2001,2002 Miles Bader <miles@gnu.org> |
| 7 | * |
| 8 | * This file is subject to the terms and conditions of the GNU General |
| 9 | * Public License. See the file COPYING in the main directory of this |
| 10 | * archive for more details. |
| 11 | * |
| 12 | * Written by Miles Bader <miles@gnu.org> |
| 13 | * Microblaze port by John Williams |
| 14 | */ |
| 15 | |
| 16 | #ifndef __MICROBLAZE_STRING_H__ |
| 17 | #define __MICROBLAZE_STRING_H__ |
| 18 | |
| 19 | #if 0 |
| 20 | #define __HAVE_ARCH_BCOPY |
| 21 | #define __HAVE_ARCH_MEMCPY |
| 22 | #define __HAVE_ARCH_MEMSET |
| 23 | #define __HAVE_ARCH_MEMMOVE |
| 24 | |
| 25 | extern void *memcpy (void *, const void *, __kernel_size_t); |
| 26 | extern void bcopy (const char *, char *, int); |
| 27 | extern void *memset (void *, int, __kernel_size_t); |
| 28 | extern void *memmove (void *, const void *, __kernel_size_t); |
| 29 | #endif |
| 30 | |
| 31 | #endif /* __MICROBLAZE_STRING_H__ */ |