aboutsummaryrefslogtreecommitdiffstats
path: root/strncmove.c
diff options
context:
space:
mode:
Diffstat (limited to 'strncmove.c')
-rw-r--r--strncmove.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/strncmove.c b/strncmove.c
index 25f83bc..1a03d2d 100644
--- a/strncmove.c
+++ b/strncmove.c
@@ -4,7 +4,7 @@
char *
-libsimple_strncmove(char *d, const char *s, int c_, size_t n) /* TODO man */
+libsimple_strncmove(char *d, const char *s, int c_, size_t n)
{
char c = (char)c_, *p, *end = &d[n];
if (d <= s) {