mirror of
https://github.com/morgan9e/systemd
synced 2026-04-14 08:25:20 +09:00
14 lines
242 B
C
14 lines
242 B
C
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
#pragma once
|
|
|
|
#include <sys/random.h>
|
|
|
|
#include "macro.h"
|
|
|
|
/* Defined since glibc-2.32. */
|
|
#ifndef GRND_INSECURE
|
|
# define GRND_INSECURE 0x0004
|
|
#else
|
|
assert_cc(GRND_INSECURE == 0x0004);
|
|
#endif
|