[PATCH] x86_64: Move export symbols to their C functions
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / arch / x86_64 / lib / memmove.c
index e93d5255fdc96e151af1d1a557100077a7b549a8..517eb1bd9de591f3eb3851779ee867c1513a2894 100644 (file)
@@ -3,6 +3,7 @@
  */
 #define _STRING_C
 #include <linux/string.h>
+#include <linux/module.h>
 
 #undef memmove
 void *memmove(void * dest,const void *src,size_t count)
@@ -17,3 +18,4 @@ void *memmove(void * dest,const void *src,size_t count)
        }
        return dest;
 } 
+EXPORT_SYMBOL(memmove);