Add option -P and -T to memcapable
[m6w6/libmemcached] / tests / test.c
index dd64be6933ef287c7bd1c03024791dd7eb903198..348df72bd9beb00464c444884de10e56306b2dfd 100644 (file)
@@ -9,19 +9,23 @@
 /*
   Sample test application.
 */
+
+#include "config.h"
+
+#include <unistd.h>
+
 #include <assert.h>
 #include <stdlib.h>
 #include <string.h>
 #include <sys/time.h>
 #include <sys/types.h>
 #include <sys/stat.h>
-#include <sys/wait.h>
 #include <unistd.h>
 #include <time.h>
-#include <fnmatch.h>
 #include <stdint.h>
 
 #include "libmemcached/memcached.h"
+
 #include "test.h"
 
 static void world_stats_print(world_stats_st *stats)
@@ -38,7 +42,7 @@ static void world_stats_print(world_stats_st *stats)
   fprintf(stderr, "\tSucceeded\t\t%u\n", stats->success);
 }
 
-static long int timedif(struct timeval a, struct timeval b)
+long int timedif(struct timeval a, struct timeval b)
 {
   long us, s;