diff options
author | Martin Mares <mj@ucw.cz> | 1999-08-17 20:47:40 +0000 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 1999-08-17 20:47:40 +0000 |
commit | f651941402079052fbdabf64092e7dd4a6a8cafe (patch) | |
tree | 9087136902af4fd9acf4965e63df372f45c8187a /lib/birdlib.h | |
parent | b332fcdfc8f0b1ac7111a63c55f72ba4b00b8035 (diff) |
Added a function for generating 32-bit random numbers.
Diffstat (limited to 'lib/birdlib.h')
-rw-r--r-- | lib/birdlib.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/birdlib.h b/lib/birdlib.h index b57478df..93ac38ef 100644 --- a/lib/birdlib.h +++ b/lib/birdlib.h @@ -63,4 +63,8 @@ void debug(char *msg, ...); /* Printf to debug output */ #define ASSERT(x) do { } while(0) #endif +/* Pseudorandom numbers */ + +u32 random_u32(void); + #endif |