18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */ 28c2ecf20Sopenharmony_ci/* 38c2ecf20Sopenharmony_ci * Copyright (C) 2006 Atmark Techno, Inc. 48c2ecf20Sopenharmony_ci */ 58c2ecf20Sopenharmony_ci 68c2ecf20Sopenharmony_ci#ifndef _ASM_MICROBLAZE_STRING_H 78c2ecf20Sopenharmony_ci#define _ASM_MICROBLAZE_STRING_H 88c2ecf20Sopenharmony_ci 98c2ecf20Sopenharmony_ci#ifdef __KERNEL__ 108c2ecf20Sopenharmony_ci 118c2ecf20Sopenharmony_ci#define __HAVE_ARCH_MEMSET 128c2ecf20Sopenharmony_ci#define __HAVE_ARCH_MEMCPY 138c2ecf20Sopenharmony_ci#define __HAVE_ARCH_MEMMOVE 148c2ecf20Sopenharmony_ci 158c2ecf20Sopenharmony_ciextern void *memset(void *, int, __kernel_size_t); 168c2ecf20Sopenharmony_ciextern void *memcpy(void *, const void *, __kernel_size_t); 178c2ecf20Sopenharmony_ciextern void *memmove(void *, const void *, __kernel_size_t); 188c2ecf20Sopenharmony_ci 198c2ecf20Sopenharmony_ci#endif /* __KERNEL__ */ 208c2ecf20Sopenharmony_ci 218c2ecf20Sopenharmony_ci#endif /* _ASM_MICROBLAZE_STRING_H */ 22