1 /* Substitute for <sys/random.h>.
2 Copyright (C) 2020 Free Software Foundation, Inc.
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2, or (at your option)
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, see <https://www.gnu.org/licenses/>. */
18 @PRAGMA_SYSTEM_HEADER@
22 #ifndef _@GUARD_PREFIX@_SYS_RANDOM_H
24 #if @HAVE_SYS_RANDOM_H@
26 /* On uClibc, <sys/random.h> assumes prior inclusion of <stddef.h>. */
27 # if defined __UCLIBC__
30 /* On Mac OS X 10.5, <sys/random.h> assumes prior inclusion of <sys/types.h>.
31 On Max OS X 10.13, <sys/random.h> assumes prior inclusion of a file that
32 includes <Availability.h>, such as <stdlib.h> or <unistd.h>. */
33 # if defined __APPLE__ && defined __MACH__ /* Mac OS X */
34 # include <sys/types.h>
38 /* The include_next requires a split double-inclusion guard. */
39 # @INCLUDE_NEXT@ @NEXT_SYS_RANDOM_H@
43 #ifndef _@GUARD_PREFIX@_SYS_RANDOM_H
44 #define _@GUARD_PREFIX@_SYS_RANDOM_H
46 #include <sys/types.h>
48 /* Define the GRND_* constants. */
50 # define GRND_NONBLOCK 1
51 # define GRND_RANDOM 2
54 /* The definitions of _GL_FUNCDECL_RPL etc. are copied here. */
56 /* The definition of _GL_ARG_NONNULL is copied here. */
58 /* The definition of _GL_WARN_ON_USE is copied here. */
61 /* Declare overridden functions. */
64 #if @GNULIB_GETRANDOM@
65 /* Fill a buffer with random bytes. */
66 # if @REPLACE_GETRANDOM@
67 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
69 # define getrandom rpl_getrandom
71 _GL_FUNCDECL_RPL (getrandom
, ssize_t
,
72 (void *buffer
, size_t length
, unsigned int flags
)
73 _GL_ARG_NONNULL ((1)));
74 _GL_CXXALIAS_RPL (getrandom
, ssize_t
,
75 (void *buffer
, size_t length
, unsigned int flags
));
77 # if !@HAVE_GETRANDOM@
78 _GL_FUNCDECL_SYS (getrandom
, ssize_t
,
79 (void *buffer
, size_t length
, unsigned int flags
)
80 _GL_ARG_NONNULL ((1)));
82 _GL_CXXALIAS_SYS (getrandom
, ssize_t
,
83 (void *buffer
, size_t length
, unsigned int flags
));
85 _GL_CXXALIASWARN (getrandom
);
86 #elif defined GNULIB_POSIXCHECK
88 # if HAVE_RAW_DECL_GETRANDOM
89 _GL_WARN_ON_USE (getrandom
, "getrandom is unportable - "
90 "use gnulib module getrandom for portability");
95 #endif /* _@GUARD_PREFIX@_SYS_RANDOM_H */
96 #endif /* _@GUARD_PREFIX@_SYS_RANDOM_H */