From 87d450cde403cd8fa3e0594915933e0e444e6c9c Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Sat, 6 Nov 2021 20:20:27 +0100 Subject: stecpy: fix prototype in definition --- stecpy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'stecpy.c') diff --git a/stecpy.c b/stecpy.c index 02b69c6..ac521ab 100644 --- a/stecpy.c +++ b/stecpy.c @@ -1,7 +1,7 @@ #include char * -stecpy(char *dst, const char *end, const char *src) +stecpy(char *dst, char *end, const char *src) { if (dst >= end) return dst; -- cgit 1.4.1