aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/aarch64/string/strncat.c
Commit message (Collapse)AuthorAgeFilesLines
* libc: fix _FORTIFY_SOURCE build on aarch64Kyle Evans2025-03-041-0/+2
| | | | | | | | | As with their amd64 counterparts, we need to undef these string funcs that _FORTIFY_SOURCE will have defined macros for to avoid breaking the build. Fixes: bea89d038ac ("lib/libc/aarch64/string: add strlcat SIMD [...]") Fixes: 3dc5429158c ("lib/libc/aarch64/string: add strncat SIMD [...]")
* lib/libc/aarch64/string: add strncat SIMD implementationGetz Mikalsen2025-01-101-0/+29
This patch requires D46170 as it depends on strlcpy being labeled __memccpy. It's a direct copy from the amd64 string functions. Tested by: fuz (exprun) Reviewed by: fuz, emaste Sponsored by: Google LLC (GSoC 2024) PR: 281175 Differential Revision: https://reviews.freebsd.org/D46292