1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-28 00:21:52 +03:00

getrandom: fix comment [BZ #22347]

* stdlib/getrandom.c (getrandom): Fix comment.
* sysdeps/unix/sysv/linux/getrandom.c (getrandom): Likewise.
This commit is contained in:
Dmitry V. Levin
2017-12-23 14:27:30 +00:00
parent f5c558f3ec
commit a47ad79afa
3 changed files with 10 additions and 4 deletions

View File

@ -19,8 +19,8 @@
#include <sys/random.h>
#include <errno.h>
/* Write LENGTH bytes of randomness starting at BUFFER. Return the
number of bytes written, or -1 on error. */
/* Write up to LENGTH bytes of randomness starting at BUFFER.
Return the number of bytes written, or -1 on error. */
ssize_t
getrandom (void *buffer, size_t length, unsigned int flags)
{