exp2l: Work around a NetBSD 10.0/i386 bug.
[gnulib.git] / lib / sys_random.in.h
blob22f67b17635876e2693bd7067b48f2c4ff1d93d5
1 /* Substitute for <sys/random.h>.
2 Copyright (C) 2020-2024 Free Software Foundation, Inc.
4 This file is free software: you can redistribute it and/or modify
5 it under the terms of the GNU Lesser General Public License as
6 published by the Free Software Foundation; either version 2.1 of the
7 License, or (at your option) any later version.
9 This file 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 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public License
15 along with this program. If not, see <https://www.gnu.org/licenses/>. */
17 # if __GNUC__ >= 3
18 @PRAGMA_SYSTEM_HEADER@
19 # endif
20 @PRAGMA_COLUMNS@
22 #ifndef _@GUARD_PREFIX@_SYS_RANDOM_H
24 #if @HAVE_SYS_RANDOM_H@
26 /* On uClibc < 1.0.35, <sys/random.h> assumes prior inclusion of <stddef.h>.
27 Do not use __UCLIBC__ here, as it might not be defined yet.
28 But avoid namespace pollution on glibc systems. */
29 # ifndef __GLIBC__
30 # include <stddef.h>
31 # endif
32 /* On Mac OS X 10.5, <sys/random.h> assumes prior inclusion of <sys/types.h>.
33 On Max OS X 10.13, <sys/random.h> assumes prior inclusion of a file that
34 includes <Availability.h>, such as <stdlib.h> or <unistd.h>. */
35 # if defined __APPLE__ && defined __MACH__ /* Mac OS X */
36 # include <sys/types.h>
37 # include <stdlib.h>
38 # endif
40 /* The include_next requires a split double-inclusion guard. */
41 # @INCLUDE_NEXT@ @NEXT_SYS_RANDOM_H@
43 #endif
45 #ifndef _@GUARD_PREFIX@_SYS_RANDOM_H
46 #define _@GUARD_PREFIX@_SYS_RANDOM_H
48 /* This file uses GNULIB_POSIXCHECK, HAVE_RAW_DECL_*. */
49 #if !_GL_CONFIG_H_INCLUDED
50 #error "Please include config.h first."
51 #endif
53 #include <sys/types.h>
55 /* Define the GRND_* constants. */
56 #ifndef GRND_NONBLOCK
57 # define GRND_NONBLOCK 1
58 # define GRND_RANDOM 2
59 #endif
61 /* The definitions of _GL_FUNCDECL_RPL etc. are copied here. */
63 /* The definition of _GL_ARG_NONNULL is copied here. */
65 /* The definition of _GL_WARN_ON_USE is copied here. */
68 /* Declare overridden functions. */
71 #if @GNULIB_GETRANDOM@
72 /* Fill a buffer with random bytes. */
73 # if @REPLACE_GETRANDOM@
74 # if !(defined __cplusplus && defined GNULIB_NAMESPACE)
75 # undef getrandom
76 # define getrandom rpl_getrandom
77 # endif
78 _GL_FUNCDECL_RPL (getrandom, ssize_t,
79 (void *buffer, size_t length, unsigned int flags)
80 _GL_ARG_NONNULL ((1)));
81 _GL_CXXALIAS_RPL (getrandom, ssize_t,
82 (void *buffer, size_t length, unsigned int flags));
83 # else
84 # if !@HAVE_GETRANDOM@
85 _GL_FUNCDECL_SYS (getrandom, ssize_t,
86 (void *buffer, size_t length, unsigned int flags)
87 _GL_ARG_NONNULL ((1)));
88 # endif
89 _GL_CXXALIAS_SYS (getrandom, ssize_t,
90 (void *buffer, size_t length, unsigned int flags));
91 # endif
92 # if __GLIBC__ + (__GLIBC_MINOR__ >= 25) > 2
93 _GL_CXXALIASWARN (getrandom);
94 # endif
95 #elif defined GNULIB_POSIXCHECK
96 # undef getrandom
97 # if HAVE_RAW_DECL_GETRANDOM
98 _GL_WARN_ON_USE (getrandom, "getrandom is unportable - "
99 "use gnulib module getrandom for portability");
100 # endif
101 #endif
104 #endif /* _@GUARD_PREFIX@_SYS_RANDOM_H */
105 #endif /* _@GUARD_PREFIX@_SYS_RANDOM_H */