~brianaker/gearmand/734663

« back to all changes in this revision

Viewing changes to examples/reverse_client_bg.c

  • Committer: Brian Aker
  • Date: 2011-02-15 01:48:22 UTC
  • mfrom: (373.1.5 gearmand-trunk)
  • Revision ID: brian@tangent.org-20110215014822-2rbjyk2a1stv4pev
Merge in bug fix for memcached, and various icc failures.

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
 * @brief Example Background Client
12
12
 */
13
13
 
 
14
#include "config.h"
 
15
 
14
16
#include <stdio.h>
15
17
#include <stdlib.h>
16
18
#include <string.h>
17
19
#include <unistd.h>
18
20
 
 
21
#ifdef HAVE_GETOPT_H
 
22
#include <getopt.h>
 
23
#endif
 
24
 
19
25
#include <libgearman/gearman.h>
20
26
 
21
27
static void usage(char *name);