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