Match randombytes() prototype with declaration.

This commit is contained in:
Frank Denis 2013-09-24 14:06:26 -07:00
parent 18015e71e2
commit ad49d05a8b

View File

@ -26,7 +26,7 @@ SODIUM_EXPORT
int randombytes_set_implementation(randombytes_implementation *impl);
SODIUM_EXPORT
void randombytes(unsigned char *buf, unsigned long long size);
void randombytes(unsigned char * const buf, const unsigned long long buf_len);
SODIUM_EXPORT
const char *randombytes_implementation_name(void);