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