xref: /openbmc/linux/arch/mips/include/asm/string.h (revision 3c0be584)
1384740dcSRalf Baechle /*
2384740dcSRalf Baechle  * This file is subject to the terms and conditions of the GNU General Public
3384740dcSRalf Baechle  * License.  See the file "COPYING" in the main directory of this archive
4384740dcSRalf Baechle  * for more details.
5384740dcSRalf Baechle  *
6384740dcSRalf Baechle  * Copyright (c) 1994, 95, 96, 97, 98, 2000, 01 Ralf Baechle
7384740dcSRalf Baechle  * Copyright (c) 2000 by Silicon Graphics, Inc.
8384740dcSRalf Baechle  * Copyright (c) 2001 MIPS Technologies, Inc.
9384740dcSRalf Baechle  */
10384740dcSRalf Baechle #ifndef _ASM_STRING_H
11384740dcSRalf Baechle #define _ASM_STRING_H
12384740dcSRalf Baechle 
13384740dcSRalf Baechle #define __HAVE_ARCH_MEMSET
14384740dcSRalf Baechle extern void *memset(void *__s, int __c, size_t __count);
15384740dcSRalf Baechle 
16384740dcSRalf Baechle #define __HAVE_ARCH_MEMCPY
17384740dcSRalf Baechle extern void *memcpy(void *__to, __const__ void *__from, size_t __n);
18384740dcSRalf Baechle 
19384740dcSRalf Baechle #define __HAVE_ARCH_MEMMOVE
20384740dcSRalf Baechle extern void *memmove(void *__dest, __const__ void *__src, size_t __n);
21384740dcSRalf Baechle 
22384740dcSRalf Baechle #endif /* _ASM_STRING_H */
23