about summary refs log tree commit diff
path: root/stecpy.c
diff options
context:
space:
mode:
authorLeah Neukirchen <leah@vuxu.org>2021-11-06 20:20:27 +0100
committerLeah Neukirchen <leah@vuxu.org>2021-11-06 20:20:27 +0100
commit87d450cde403cd8fa3e0594915933e0e444e6c9c (patch)
tree72b7e83c8d9cf381c9ff496f51bf90455428b7e9 /stecpy.c
parentd2b694a313ecb8fb8a4c510c2f229b07543fe8a9 (diff)
downloadlibste-87d450cde403cd8fa3e0594915933e0e444e6c9c.tar.gz
libste-87d450cde403cd8fa3e0594915933e0e444e6c9c.tar.xz
libste-87d450cde403cd8fa3e0594915933e0e444e6c9c.zip
stecpy: fix prototype in definition
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;