linux/arch/h8300/include/asm/string.h
<<
>>
Prefs
   1#ifndef _H8300_STRING_H_
   2#define _H8300_STRING_H_
   3
   4#ifdef __KERNEL__ /* only set these up for kernel code */
   5
   6#include <asm/setup.h>
   7#include <asm/page.h>
   8
   9#define __HAVE_ARCH_MEMSET
  10extern void *memset(void *s, int c, size_t count);
  11
  12#define __HAVE_ARCH_MEMCPY
  13extern void *memcpy(void *d, const void *s, size_t count);
  14
  15#endif /* KERNEL */
  16
  17#endif
  18