1
0
mirror of https://gitlab.labs.nic.cz/labs/bird.git synced 2024-05-11 16:54:54 +00:00

Added a function for generating 32-bit random numbers.

This commit is contained in:
Martin Mares
1999-08-17 20:47:40 +00:00
parent b332fcdfc8
commit f651941402
2 changed files with 19 additions and 0 deletions

View File

@@ -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