summaryrefslogtreecommitdiffstats
path: root/5/3.c
diff options
context:
space:
mode:
Diffstat (limited to '5/3.c')
-rw-r--r--5/3.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/5/3.c b/5/3.c
index dd9c3e4..e6a191e 100644
--- a/5/3.c
+++ b/5/3.c
@@ -5,7 +5,8 @@
#define MAXLEN 1000
-void mstrcat(char *, char *);
+/* Copies str t to the end of str s */
+void mstrcat(char *s, char *t);
int main(int argc, char *argv[]) {
char *s, *t;