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

strksyms.c (342B)


      1// SPDX-License-Identifier: GPL-2.0
      2// Copyright (C) 2018 Hangzhou C-SKY Microsystems co.,ltd.
      3
      4#include <linux/module.h>
      5
      6#ifdef CONFIG_HAVE_EFFICIENT_UNALIGNED_STRING_OPS
      7EXPORT_SYMBOL(memcpy);
      8EXPORT_SYMBOL(memset);
      9EXPORT_SYMBOL(memmove);
     10#endif
     11EXPORT_SYMBOL(memcmp);
     12EXPORT_SYMBOL(strcmp);
     13EXPORT_SYMBOL(strcpy);
     14EXPORT_SYMBOL(strlen);