mirror of
https://git.freebsd.org/src.git
synced 2026-01-16 23:02:24 +00:00
This picks up the accelerated string functions written by
strajabot@.
Event: Google Summer of Code 2024
MFC after: 1 month
MFC to: stable/15
See also: 79e01e7e64
Approved by: markj (mentor)
Differential Revision: https://reviews.freebsd.org/D53248
14 lines
141 B
C
14 lines
141 B
C
/*-
|
|
* Public domain.
|
|
*/
|
|
|
|
#include <string.h>
|
|
|
|
#undef bzero /* _FORTIFY_SOURCE */
|
|
|
|
void
|
|
bzero(void *b, size_t len)
|
|
{
|
|
|
|
memset(b, 0, len);
|
|
}
|