diff options
author | Lennart Poettering <lennart@poettering.net> | 2013-10-01 23:11:23 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2013-10-01 23:11:49 +0200 |
commit | a3b6fafed441d96380a3f089118f7486d6aa3126 (patch) | |
tree | bdef526be65bc02f5a5b401e474b90748f0bb6cb /src/shared/util.h | |
parent | Update TODO (diff) | |
download | systemd-a3b6fafed441d96380a3f089118f7486d6aa3126.tar.xz systemd-a3b6fafed441d96380a3f089118f7486d6aa3126.zip |
hashmap: randomize hash functions a bit
Diffstat (limited to '')
-rw-r--r-- | src/shared/util.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/shared/util.h b/src/shared/util.h index 63f4e3dff2..1b845b3803 100644 --- a/src/shared/util.h +++ b/src/shared/util.h @@ -253,6 +253,7 @@ int make_null_stdio(void); int make_console_stdio(void); unsigned long long random_ull(void); +unsigned random_u(void); /* For basic lookup tables with strictly enumerated entries */ #define __DEFINE_STRING_TABLE_LOOKUP(name,type,scope) \ |