Fixed compilation on *BSD systems

This commit is contained in:
antirez 2010-07-05 20:14:48 +02:00
parent b67d234563
commit d06a5b23c8
2 changed files with 2 additions and 0 deletions

1
TODO
View File

@ -6,6 +6,7 @@ VERSION 2.2 TODO (Optimizations and latency)
* Support for syslog(3).
* Change the implementation of ZCOUNT to use the augmented skiplist in order to be much faster.
* Add an explicit test for MULTI/EXEC reloaded in the AOF.
VM TODO
=======

View File

@ -16,6 +16,7 @@
#include <unistd.h>
#include <errno.h>
#include <inttypes.h>
#include <pthread.h>
#include "ae.h" /* Event driven programming library */
#include "sds.h" /* Dynamic safe strings */