explicit_bzero.c\string\src - musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/src/string/explicit_bzero.c
blob: f2e12f2375e2d63d594af539b3ad39d68e0c8422 (plain) (blame)
1
2
3
4
5
6
7
8
#define _BSD_SOURCE
#include <string.h>
void explicit_bzero(void *d, size_t n)
{
	d = memset(d, 0, n);
	__asm__ __volatile__ ("" : : "r"(d) : "memory");
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月07日 09:57:56 +0000

AltStyle によって変換されたページ (->オリジナル) /