about summary refs log tree commit diff
path: root/stecpy.c
diff options
context:
space:
mode:
Diffstat (limited to 'stecpy.c')
-rw-r--r--stecpy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stecpy.c b/stecpy.c
index 02b69c6..ac521ab 100644
--- a/stecpy.c
+++ b/stecpy.c
@@ -1,7 +1,7 @@
 #include <stddef.h>
 
 char *
-stecpy(char *dst, const char *end, const char *src)
+stecpy(char *dst, char *end, const char *src)
 {
         if (dst >= end)
                 return dst;