Sebastian Huber 3489e3b639 Update to FreeBSD head 2018-09-17
Git mirror commit 6c2192b1ef8c50788c751f878552526800b1e319.

Update #3472.
2018-09-21 10:29:41 +02:00

17 lines
273 B
C

#include <machine/rtems-bsd-kernel-space.h>
/* This file is in the public domain. */
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/types.h>
#include <sys/systm.h>
#include <sodium/utils.h>
void
sodium_memzero(void *b, size_t n)
{
explicit_bzero(b, n);
}