aboutsummaryrefslogtreecommitdiffstats
path: root/arch/alpha/lib/strcpy.S
diff options
context:
space:
mode:
Diffstat (limited to 'arch/alpha/lib/strcpy.S')
-rw-r--r--arch/alpha/lib/strcpy.S3
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/alpha/lib/strcpy.S b/arch/alpha/lib/strcpy.S
index e0728e4ad21f..98deae1e4d08 100644
--- a/arch/alpha/lib/strcpy.S
+++ b/arch/alpha/lib/strcpy.S
@@ -5,7 +5,7 @@
5 * Copy a null-terminated string from SRC to DST. Return a pointer 5 * Copy a null-terminated string from SRC to DST. Return a pointer
6 * to the null-terminator in the source. 6 * to the null-terminator in the source.
7 */ 7 */
8 8#include <asm/export.h>
9 .text 9 .text
10 10
11 .align 3 11 .align 3
@@ -21,3 +21,4 @@ strcpy:
21 br __stxcpy # do the copy 21 br __stxcpy # do the copy
22 22
23 .end strcpy 23 .end strcpy
24 EXPORT_SYMBOL(strcpy)