summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lib/libc/string/memrchr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libc/string/memrchr.c b/src/lib/libc/string/memrchr.c
index 95d3c3ee9b..bd27ebc620 100644
--- a/src/lib/libc/string/memrchr.c
+++ b/src/lib/libc/string/memrchr.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: memrchr.c,v 1.1 2007/09/03 14:36:40 millert Exp $ */ 1/* $OpenBSD: memrchr.c,v 1.2 2007/11/27 16:22:12 martynas Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 2007 Todd C. Miller <Todd.Miller@courtesan.com> 4 * Copyright (c) 2007 Todd C. Miller <Todd.Miller@courtesan.com>
@@ -20,7 +20,7 @@
20 20
21/* 21/*
22 * Reverse memchr() 22 * Reverse memchr()
23 * Find the last occurence of 'c' in the buffer 's' of size 'n'. 23 * Find the last occurrence of 'c' in the buffer 's' of size 'n'.
24 */ 24 */
25void * 25void *
26memrchr(const void *s, int c, size_t n) 26memrchr(const void *s, int c, size_t n)