summaryrefslogtreecommitdiff
path: root/src/string/strpbrk.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/string/strpbrk.c')
-rw-r--r--src/string/strpbrk.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/string/strpbrk.c b/src/string/strpbrk.c
index d238ad89..2d2a95b4 100644
--- a/src/string/strpbrk.c
+++ b/src/string/strpbrk.c
@@ -21,6 +21,8 @@ char * strpbrk(const char *s1, const char *s2)
return NULL;
}
+CHECK_2(char *, 0, strpbrk, const char *, const char *)
+
/***
locates the first occurence in ARGUMENT(s1) of any character in ARGUMENT(s2).
***/