diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-04-26 20:30:45 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-04-26 20:30:45 +0200 |
commit | 3df364ebb1e5d412bcbddc337871c921d390172c (patch) | |
tree | d41f6f3f3cc8ad787596dc0b786cd6fbca21b1c2 /src/libmdsserver/hash-table.c | |
parent | m fixes + store client information in a hash table and in a linked list (diff) | |
download | mds-3df364ebb1e5d412bcbddc337871c921d390172c.tar.gz mds-3df364ebb1e5d412bcbddc337871c921d390172c.tar.bz2 mds-3df364ebb1e5d412bcbddc337871c921d390172c.tar.xz |
add table optimised for file descriptors
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to '')
-rw-r--r-- | src/libmdsserver/hash-table.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libmdsserver/hash-table.c b/src/libmdsserver/hash-table.c index b56600b..615f7f7 100644 --- a/src/libmdsserver/hash-table.c +++ b/src/libmdsserver/hash-table.c @@ -17,6 +17,7 @@ */ #include "hash-table.h" +#include <stdlib.h> #include <errno.h> |