aboutsummaryrefslogtreecommitdiffstats
path: root/src/util.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/util.h')
-rw-r--r--src/util.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/util.h b/src/util.h
index 159626d..64b39e3 100644
--- a/src/util.h
+++ b/src/util.h
@@ -10,6 +10,7 @@
#define __RUTIL_H__
#include <stddef.h>
+#include <stdint.h>
#include <stdio.h>
extern void __attribute__((noreturn)) die_(const char *err, ...);
@@ -20,5 +21,6 @@ extern char *concat(size_t count, ...);
extern unsigned char *hash_file(FILE *fp);
extern void sha1_to_hex(const unsigned char *sha1, char *buf);
extern void hex_to_sha1(const char *s, unsigned char *sha1);
+extern uint32_t generate_seed();
#endif