mirror of
https://github.com/zeek/zeek.git
synced 2025-10-06 00:28:21 +00:00
Removal of the --enable-int64 config option.
This will now be always on. As such, uses of the USE_INT64 preprocessor definition have been cleaned out.
This commit is contained in:
parent
5cad4c8789
commit
13569aaab7
11 changed files with 2 additions and 66 deletions
11
src/util.h
11
src/util.h
|
@ -44,15 +44,8 @@ typedef unsigned int uint32;
|
|||
typedef unsigned short uint16;
|
||||
typedef unsigned char uint8;
|
||||
typedef long long int int64;
|
||||
|
||||
#ifdef USE_INT64
|
||||
typedef int64 bro_int_t;
|
||||
typedef uint64 bro_uint_t;
|
||||
#else
|
||||
typedef int bro_int_t;
|
||||
typedef uint32 bro_uint_t;
|
||||
// # error "USE_INT64 not defined!"
|
||||
#endif
|
||||
typedef int64 bro_int_t;
|
||||
typedef uint64 bro_uint_t;
|
||||
|
||||
#if SIZEOF_LONG_LONG == 8
|
||||
typedef unsigned long long uint64;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue