]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - arch/h8300/include/asm/string.h
License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[mirror_ubuntu-bionic-kernel.git] / arch / h8300 / include / asm / string.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
d2a5f499
YS
2#ifndef _H8300_STRING_H_
3#define _H8300_STRING_H_
4
5#ifdef __KERNEL__ /* only set these up for kernel code */
6
7#include <asm/setup.h>
8#include <asm/page.h>
9
10#define __HAVE_ARCH_MEMSET
11extern void *memset(void *s, int c, size_t count);
12
13#define __HAVE_ARCH_MEMCPY
14extern void *memcpy(void *d, const void *s, size_t count);
15
16#endif /* KERNEL */
17
18#endif