diff options
author | Lennart Poettering <lennart@poettering.net> | 2016-01-08 01:10:45 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2016-01-11 19:39:59 +0100 |
commit | 758dd67e8d40e65f695103bb03a77afaa087c5be (patch) | |
tree | 9d2b7bc2bd45ab3a32af54f3394ad6981eb85bcd /Makefile.am | |
parent | e84750c905111675bdae8437257c764e13d776b5 (diff) |
basic: split hash functions into their own header files
The hash operations are not really that specific to hashmaps, hence split them into a .c module of their own.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index c5b15b884a..bc33cae680 100644 --- a/Makefile.am +++ b/Makefile.am @@ -841,6 +841,8 @@ libbasic_la_SOURCES = \ src/basic/mempool.h \ src/basic/hashmap.c \ src/basic/hashmap.h \ + src/basic/hash-funcs.c \ + src/basic/hash-funcs.h \ src/basic/siphash24.c \ src/basic/siphash24.h \ src/basic/set.h \ |