Fix for bug #15450
[m6w6/libmemcached] / libhashkit / common.h
1 /* HashKit
2 * Copyright (C) 2009 Brian Aker
3 * All rights reserved.
4 *
5 * Use and distribution licensed under the BSD license. See
6 * the COPYING file in the parent directory for full text.
7 */
8
9 /**
10 * @file
11 * @brief System Include Files
12 */
13
14 #ifndef HASHKIT_COMMON_H
15 #define HASHKIT_COMMON_H
16
17 #include "config.h"
18
19 #include <assert.h>
20 #include <errno.h>
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <math.h>
24
25 #include "hashkit.h"
26
27 HASHKIT_LOCAL
28 void md5_signature(const unsigned char *key, unsigned int length, unsigned char *result);
29
30 HASHKIT_LOCAL
31 int update_continuum(hashkit_st *hashkit);
32
33 #endif /* HASHKIT_COMMON_H */