cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

string.h (532B)


      1/* SPDX-License-Identifier: GPL-2.0 */
      2/*
      3 * Copyright (C) 2006 Atmark Techno, Inc.
      4 */
      5
      6#ifndef _ASM_MICROBLAZE_STRING_H
      7#define _ASM_MICROBLAZE_STRING_H
      8
      9#ifdef __KERNEL__
     10
     11#ifdef CONFIG_OPT_LIB_FUNCTION
     12#define __HAVE_ARCH_MEMSET
     13#define __HAVE_ARCH_MEMCPY
     14#define __HAVE_ARCH_MEMMOVE
     15
     16extern void *memset(void *, int, __kernel_size_t);
     17extern void *memcpy(void *, const void *, __kernel_size_t);
     18extern void *memmove(void *, const void *, __kernel_size_t);
     19#endif
     20
     21#endif /* __KERNEL__ */
     22
     23#endif /* _ASM_MICROBLAZE_STRING_H */