diff options
author | Aurelien Jarno <aurelien@aurel32.net> | 2017-08-03 22:35:48 +0000 |
---|---|---|
committer | Aurelien Jarno <aurelien@aurel32.net> | 2017-08-03 22:35:48 +0000 |
commit | 2b34e2716f1e84b2c3457ffc868c3dc775b55845 (patch) | |
tree | 27bcd82522185b5e9dff0112cad8a92bc6027ad2 | |
parent | 144bdab050bdd78c327d98a79b15c5b164e1d56f (diff) | |
download | glibc-2b34e2716f1e84b2c3457ffc868c3dc775b55845.zip glibc-2b34e2716f1e84b2c3457ffc868c3dc775b55845.tar.gz glibc-2b34e2716f1e84b2c3457ffc868c3dc775b55845.tar.bz2 |
Fix the return type of the getentropy stub
The return type of the getentropy stub is wrongly defined as ssize_t,
while both the <sys/random.h> header and the Linux implementation
define it as int. This patch fixes that.
Changelog:
* stdlib/getentropy.c (getentropy): Change return type to int.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | stdlib/getentropy.c | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,5 +1,9 @@ 2017-08-03 Aurelien Jarno <aurelien@aurel32.net> + * stdlib/getentropy.c (getentropy): Change return type to int. + +2017-08-03 Aurelien Jarno <aurelien@aurel32.net> + * sysdeps/i386/i686/fpu/multiarch/libm-test-ulps: Regenerated. 2017-08-03 Joseph Myers <joseph@codesourcery.com> diff --git a/stdlib/getentropy.c b/stdlib/getentropy.c index a71d4cd..a88bbf8 100644 --- a/stdlib/getentropy.c +++ b/stdlib/getentropy.c @@ -21,7 +21,7 @@ /* Write LENGTH bytes of randomness starting at BUFFER. Return 0 on success and -1 on failure. */ -ssize_t +int getentropy (void *buffer, size_t length) { __set_errno (ENOSYS); |