2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file COPYING in the main directory of this archive
9 #include <linux/module.h>
10 #include <linux/string.h>
12 char *strcpy(char *dest
, const char *src
)
14 return __kernel_strcpy(dest
, src
);
16 EXPORT_SYMBOL(strcpy
);
18 char *strcat(char *dest
, const char *src
)
20 return __kernel_strcpy(dest
+ __kernel_strlen(dest
), src
);
22 EXPORT_SYMBOL(strcat
);