dect
/
libpcap
Archived
13
0
Fork 0

Added the definition of int64_t

This commit is contained in:
gianluca 2007-09-27 17:55:55 +00:00
parent 231404ec64
commit f999210021
1 changed files with 2 additions and 0 deletions

View File

@ -86,8 +86,10 @@ typedef signed short int32_t;
#ifndef HAVE_U_INT64_T
#if SIZEOF_LONG_LONG == 8
typedef unsigned long long u_int64_t;
typedef long long int64_t;
#elif defined(_MSC_EXTENSIONS)
typedef unsigned _int64 u_int64_t;
typedef _int64 int64_t;
#elif SIZEOF_INT == 8
typedef unsigned int u_int64_t;
#elif SIZEOF_LONG == 8