Haka
hash.h
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2  * License, v. 2.0. If a copy of the MPL was not distributed with this
3  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
4 
5 #ifndef HAKA_CONTAINER_HASH_H
6 #define HAKA_CONTAINER_HASH_H
7 
8 #include <haka/compiler.h>
9 #include <stddef.h>
10 
11 #include "uthash.h"
12 
13 typedef UT_hash_handle hash_head_t;
14 
15 #endif /* HAKA_CONTAINER_HASH_H */