summaryrefslogtreecommitdiff
path: root/src/lib/libc/string/strrchr.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libc/string/strrchr.c')
-rw-r--r--src/lib/libc/string/strrchr.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libc/string/strrchr.c b/src/lib/libc/string/strrchr.c
index 181f56ea69..9375572144 100644
--- a/src/lib/libc/string/strrchr.c
+++ b/src/lib/libc/string/strrchr.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: strrchr.c,v 1.2 2015/05/15 22:29:37 millert Exp $ */ 1/* $OpenBSD: strrchr.c,v 1.3 2015/08/31 02:53:57 guenther Exp $ */
2/* 2/*
3 * Copyright (c) 1988 Regents of the University of California. 3 * Copyright (c) 1988 Regents of the University of California.
4 * All rights reserved. 4 * All rights reserved.
@@ -45,3 +45,4 @@ strrchr(const char *p, int ch)
45 } 45 }
46 /* NOTREACHED */ 46 /* NOTREACHED */
47} 47}
48DEF_STRONG(strrchr);