diff options
author | Mattias Andrée <maandree@operamail.com> | 2015-09-02 18:08:08 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2015-09-02 18:08:08 +0200 |
commit | 027d256d3bc5fb6732d79d4bac60ebce2bba3a84 (patch) | |
tree | dd3df9487df550b0610aeb655313cb9f015430de /include/string.h | |
parent | m (diff) | |
download | slibc-027d256d3bc5fb6732d79d4bac60ebce2bba3a84.tar.gz slibc-027d256d3bc5fb6732d79d4bac60ebce2bba3a84.tar.bz2 slibc-027d256d3bc5fb6732d79d4bac60ebce2bba3a84.tar.xz |
stpbrk => strpbrk
Signed-off-by: Mattias Andrée <maandree@operamail.com>
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))); |