Fixed a small error in the documentation.
[awesomized/libmemcached] / tests / test.h
index 88e62800438beb5a7f094bd0889dd91274694d89..4e695d26ca468ca637f596155b0de1571ef0613b 100644 (file)
@@ -1,13 +1,16 @@
 /*
   Structures for generic tests.
 */
+#include <memcached.h>
+#include "../lib/common.h"
+
 typedef struct collection_st collection_st;
 typedef struct test_st test_st;
 
 struct test_st {
   char *name;
   unsigned int requires_flush;
-  void (*function)(memcached_st *memc);
+  uint8_t (*function)(memcached_st *memc);
 };
 
 struct collection_st {