File: pfqlib_priv.h

package info (click to toggle)
pfqueue 0.5.6-4
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 1,392 kB
  • ctags: 627
  • sloc: sh: 8,904; ansic: 3,877; makefile: 79
file content (19 lines) | stat: -rw-r--r-- 215 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

#ifndef __PFQLIB_PRIV_H
#define __PFQLIB_PRIV_H

#define BUF_SIZE	250	// Strings buffer size

#ifndef TRUE
#define TRUE		1
#endif

#ifndef FALSE
#define FALSE		0
#endif

#ifndef NULL
#define NULL		0
#endif

#endif