Updates, rpm now tests the install locations.
[m6w6/libmemcached] / tests / start.c
1 /* LibMemcached
2 * Copyright (C) 2006-2009 Brian Aker
3 * All rights reserved.
4 *
5 * Use and distribution licensed under the BSD license. See
6 * the COPYING file in the parent directory for full text.
7 *
8 * Summary:
9 *
10 */
11
12 #include <stdio.h>
13 #include <string.h>
14 #include "server.h"
15
16 int main(void)
17 {
18 server_startup_st construct;
19
20 memset(&construct, 0, sizeof(server_startup_st));
21
22 construct.count= 4;
23
24 server_startup(&construct);
25
26 return 0;
27 }