mirror of
https://github.com/versity/scoutfs.git
synced 2026-04-21 22:10:30 +00:00
This initial commit has enough to make a new file system and print out it's structures. Signed-off-by: Zach Brown <zab@versity.com>
11 lines
230 B
C
11 lines
230 B
C
#ifndef _RAND_H_
|
|
#define _RAND_H_
|
|
|
|
/*
|
|
* We could play around a bit with some macros to get aligned constant
|
|
* word sized buffers filled by single instructions.
|
|
*/
|
|
void pseudo_random_bytes(void *data, unsigned int len);
|
|
|
|
#endif
|