Merge Patrick
[awesomized/libmemcached] / tests / start.c
1 #include <stdio.h>
2 #include <string.h>
3 #include "server.h"
4
5 int main(void)
6 {
7 server_startup_st construct;
8
9 memset(&construct, 0, sizeof(server_startup_st));
10
11 construct.count= 4;
12
13 server_startup(&construct);
14
15 return 0;
16 }