File: common.h

package info (click to toggle)
libnjb 2.2.5-4.3
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 2,528 kB
  • ctags: 1,072
  • sloc: ansic: 11,860; sh: 8,611; makefile: 144
file content (16 lines) | stat: -rw-r--r-- 316 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/** 
 * \file common.h
 * These headers are used by absolutely all sample programs.
 * Special quirks that apply to all samples go here.
 */
#include <libnjb.h>
#ifndef _MSC_VER
#include "config.h"
#ifdef HAVE_GETOPT_H
#include <getopt.h>
#else
#include <unistd.h>
#endif
#else
#include "..\windows\getopt.h"
#endif