Fixes a typo/oops that shows up on openbsd.
[m6w6/libmemcached] / clients / execute.h
index fc04131291bc8331f4c7f9e581bc375d2c96e687..176c6fff81d6ebe82aaafc318a1f92538ddae927 100644 (file)
@@ -1,5 +1,25 @@
-#include <memcached.h>
+/* LibMemcached
+ * Copyright (C) 2006-2009 Brian Aker
+ * All rights reserved.
+ *
+ * Use and distribution licensed under the BSD license.  See
+ * the COPYING file in the parent directory for full text.
+ *
+ * Summary:
+ *
+ */
+
+#ifndef CLIENTS_EXECUTE_H
+#define CLIENTS_EXECUTE_H
+
+#include <stdio.h>
+
+#include "libmemcached/memcached.h"
 #include "generator.h"
 
 unsigned int execute_set(memcached_st *memc, pairs_st *pairs, unsigned int number_of);
 unsigned int execute_get(memcached_st *memc, pairs_st *pairs, unsigned int number_of);
+unsigned int execute_mget(memcached_st *memc, const char * const *keys, size_t *key_length,
+                          unsigned int number_of);
+#endif
+