mirror of https://github.com/OISF/suricata
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
262 B
C
18 lines
262 B
C
16 years ago
|
/* Copyright (c) 2008 Victor Julien <victor@inliniac.net> */
|
||
|
|
||
|
/**
|
||
|
* Common includes, etc.
|
||
|
*/
|
||
|
|
||
|
#ifndef __EIDPS_COMMON_H__
|
||
|
#define __EIDPS_COMMON_H__
|
||
|
|
||
|
#define TRUE 1
|
||
|
#define FALSE 0
|
||
|
|
||
|
#include <stdint.h>
|
||
|
#include <inttypes.h>
|
||
|
|
||
|
#endif /* __EIDPS_COMMON_H__ */
|
||
|
|