diff options
Diffstat (limited to 'src/string.c')
-rw-r--r-- | src/string.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/string.c b/src/string.c index f2010c6..b610e2f 100644 --- a/src/string.c +++ b/src/string.c @@ -12,9 +12,9 @@ #include <stdlib.h> #include <string.h> -/* This is not provided by glibc; however, it does provide a possible - * implementation in string_copying(7), which I copied from. */ -char *stpecpy(char *dst, char *end, const char *src) +/* glibc calls this stpecpy; it's not provided by glibc; however, it does + * provide a possible implementation in string_copying(7), which I copied from. */ +char *string_append(char *dst, char *end, const char *src) { if (!dst) return NULL; |