dect
/
libpcap
Archived
13
0
Fork 0

Include headers that should cause u_int64_t to be defined.

This commit is contained in:
Guy Harris 2010-01-26 20:28:51 -08:00
parent d1c86de80c
commit c9d9609809
1 changed files with 14 additions and 0 deletions

View File

@ -29,6 +29,20 @@ static const char rcsid[] _U_ =
#include "config.h"
#endif
#ifdef WIN32
#include <pcap-stdinc.h>
#else /* WIN32 */
#if HAVE_INTTYPES_H
#include <inttypes.h>
#elif HAVE_STDINT_H
#include <stdint.h>
#endif
#ifdef HAVE_SYS_BITYPES_H
#include <sys/bitypes.h>
#endif
#include <sys/types.h>
#endif /* WIN32 */
#include <stdio.h>
#include <stdlib.h>
#include <memory.h>