File: acconfig.h

package info (click to toggle)
dsniff 2.4b1%2Bdebian-22
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 1,808 kB
  • sloc: ansic: 10,785; sh: 152; makefile: 116
file content (22 lines) | stat: -rw-r--r-- 541 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* Define to 'uint32_t' if <sys/types.h> doesn't define. */
#undef u_int32_t

/* Define to 'uint64_t' if <sys/types.h> doesn't define. */
#undef u_int64_t

/* Define to 'u_int32_t' if <sys/types.h> doesn't define. */
#undef in_addr_t

/* Define if you have the <db.h> header file.  */
#undef HAVE_DB_H

/* Define if you have the <db_185.h> header file.  */
#undef HAVE_DB_185_H

/* Should be in <sys/param.h>, *sigh* */
#undef HAVE_MINMAX
#ifndef HAVE_MINMAX
#define MIN(a,b)	(((a)<(b))?(a):(b))
#define MAX(a,b)	(((a)>(b))?(a):(b))
#endif