162306a36Sopenharmony_ci/* 262306a36Sopenharmony_ci * This file is subject to the terms and conditions of the GNU General Public 362306a36Sopenharmony_ci * License. See the file "COPYING" in the main directory of this archive 462306a36Sopenharmony_ci * for more details. 562306a36Sopenharmony_ci * 662306a36Sopenharmony_ci * Copyright (c) 1994, 95, 96, 97, 98, 2000, 01 Ralf Baechle 762306a36Sopenharmony_ci * Copyright (c) 2000 by Silicon Graphics, Inc. 862306a36Sopenharmony_ci * Copyright (c) 2001 MIPS Technologies, Inc. 962306a36Sopenharmony_ci */ 1062306a36Sopenharmony_ci#ifndef _ASM_STRING_H 1162306a36Sopenharmony_ci#define _ASM_STRING_H 1262306a36Sopenharmony_ci 1362306a36Sopenharmony_ci#define __HAVE_ARCH_MEMSET 1462306a36Sopenharmony_ciextern void *memset(void *__s, int __c, size_t __count); 1562306a36Sopenharmony_ci 1662306a36Sopenharmony_ci#define __HAVE_ARCH_MEMCPY 1762306a36Sopenharmony_ciextern void *memcpy(void *__to, __const__ void *__from, size_t __n); 1862306a36Sopenharmony_ci 1962306a36Sopenharmony_ci#define __HAVE_ARCH_MEMMOVE 2062306a36Sopenharmony_ciextern void *memmove(void *__dest, __const__ void *__src, size_t __n); 2162306a36Sopenharmony_ci 2262306a36Sopenharmony_ci#endif /* _ASM_STRING_H */ 23