Linux Audio

Check our new training course

Yocto distribution development and maintenance

Need a Yocto distribution for your embedded project?
Loading...
 1/* SPDX-License-Identifier: GPL-2.0 */
 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