]> Git Repo - linux.git/blob - arch/loongarch/include/asm/string.h
Merge tag 'amd-drm-next-6.5-2023-06-09' of https://gitlab.freedesktop.org/agd5f/linux...
[linux.git] / arch / loongarch / include / asm / string.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  * Copyright (C) 2020-2022 Loongson Technology Corporation Limited
4  */
5 #ifndef _ASM_STRING_H
6 #define _ASM_STRING_H
7
8 #define __HAVE_ARCH_MEMSET
9 extern void *memset(void *__s, int __c, size_t __count);
10
11 #define __HAVE_ARCH_MEMCPY
12 extern void *memcpy(void *__to, __const__ void *__from, size_t __n);
13
14 #define __HAVE_ARCH_MEMMOVE
15 extern void *memmove(void *__dest, __const__ void *__src, size_t __n);
16
17 #endif /* _ASM_STRING_H */
This page took 0.035475 seconds and 4 git commands to generate.