diff options
Diffstat (limited to '')
-rw-r--r-- | include/string.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/string.h b/include/string.h index 30131de..483b49b 100644 --- a/include/string.h +++ b/include/string.h @@ -1016,7 +1016,7 @@ size_t strcspn(const char*, const char*) * `string` of a byte found in `stopset`. * `NULL` is returned if none is found. */ -char* stpbrk(const char*, const char*) +char* strpbrk(const char*, const char*) __GCC_ONLY(__attribute__((warn_unused_result, nonnull, pure))); |