Back to home page

OSCL-LXR

 
 

    


0001 /*
0002  * This file is subject to the terms and conditions of the GNU General Public
0003  * License.  See the file "COPYING" in the main directory of this archive
0004  * for more details.
0005  *
0006  * Copyright (c) 1994, 95, 96, 97, 98, 2000, 01 Ralf Baechle
0007  * Copyright (c) 2000 by Silicon Graphics, Inc.
0008  * Copyright (c) 2001 MIPS Technologies, Inc.
0009  */
0010 #ifndef _ASM_STRING_H
0011 #define _ASM_STRING_H
0012 
0013 #define __HAVE_ARCH_MEMSET
0014 extern void *memset(void *__s, int __c, size_t __count);
0015 
0016 #define __HAVE_ARCH_MEMCPY
0017 extern void *memcpy(void *__to, __const__ void *__from, size_t __n);
0018 
0019 #define __HAVE_ARCH_MEMMOVE
0020 extern void *memmove(void *__dest, __const__ void *__src, size_t __n);
0021 
0022 #endif /* _ASM_STRING_H */