linux/arch/h8300/include/asm/string.h
<<
>>
Prefs
   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
  19