aboutsummaryrefslogtreecommitdiffstats
path: root/src/string/mem/memchr.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/string/mem/memchr.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/string/mem/memchr.c b/src/string/mem/memchr.c
index 380fa0f..06c82a8 100644
--- a/src/string/mem/memchr.c
+++ b/src/string/mem/memchr.c
@@ -30,6 +30,8 @@
* @param size The size of the memory segment.
* @return Pointer to the first occurrence of `c`,
* `NULL` if none were found.
+ *
+ * @since Always.
*/
void* (memchr)(const void* segment, int c, size_t size)
{