diff options
Diffstat (limited to 'src/string.c')
-rw-r--r-- | src/string.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/string.c b/src/string.c index 3a52ab2..31ad612 100644 --- a/src/string.c +++ b/src/string.c @@ -12,6 +12,8 @@ #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) { if (!dst) |