2 * Copyright (C) 2004 Microtronix Datacom Ltd
4 * This file is subject to the terms and conditions of the GNU General Public
5 * License. See the file "COPYING" in the main directory of this archive
9 #ifndef _ASM_NIOS2_STRING_H
10 #define _ASM_NIOS2_STRING_H
14 #define __HAVE_ARCH_MEMSET
15 #define __HAVE_ARCH_MEMCPY
16 #define __HAVE_ARCH_MEMMOVE
18 extern void *memset(void *s
, int c
, size_t count
);
19 extern void *memcpy(void *d
, const void *s
, size_t count
);
20 extern void *memmove(void *d
, const void *s
, size_t count
);
22 #endif /* __KERNEL__ */
24 #endif /* _ASM_NIOS2_STRING_H */